From 74e563da7fa6886449fd2be5933e2d4ca5c85f48 Mon Sep 17 00:00:00 2001
From: jack <jack.su@pollex.com.tw>
Date: 星期二, 12 九月 2023 11:25:52 +0800
Subject: [PATCH] [UPDATE] 解決弱點Se: Incorrect definition of Serializable class [UPDATE] 解決弱點Information exposure to log file [UPDATE] 解決弱點Use of hard-coded password

---
 PAMapp/shared/models/reviews.model.ts |   30 +++++++++++++++++++++++++++++-
 1 files changed, 29 insertions(+), 1 deletions(-)

diff --git a/PAMapp/shared/models/reviews.model.ts b/PAMapp/shared/models/reviews.model.ts
index 438cdd3..e8eba03 100644
--- a/PAMapp/shared/models/reviews.model.ts
+++ b/PAMapp/shared/models/reviews.model.ts
@@ -1,4 +1,32 @@
-export interface UserReviewsConsultantsParams{
+import { SatisfactionType } from './enum/satisfaction-type';
+export interface UserReviewParams{
   appointmentId: number,
   score        : number,
+  type         : SatisfactionType,
+}
+
+export interface NotificationList {
+  id: number;
+  /** 璅�� */
+  title: string;
+  /** ��摰� */
+  content: string;
+  /** ACTIVITY(�犖瘣餃��)�YSTEM(蝟餌絞�) */
+  notificationType: string;
+  /** CUSTOMER(摰X)�ONSULTANT(憿批��) */
+  ownerRole: string;
+  /** ���d */
+  ownerId: number
+  createdDate: string;
+  /** 撌脰����� */
+  readDate: string;
+}
+
+export interface UserReviewPlatformRes {
+  agentNo?     : string;
+  appointmentId: number;
+  customerId   : string;
+  id           : number,
+  score        : string;
+  type         : SatisfactionType;
 }

--
Gitblit v1.8.0