From 03ea05b93dcb5adc546d9d37204df5142e2058dd Mon Sep 17 00:00:00 2001
From: Tomas <tomasysh@gmail.com>
Date: 星期三, 12 一月 2022 09:31:09 +0800
Subject: [PATCH] update: 預約單細節頁面(客戶資訊區塊樣式)

---
 PAMapp/shared/models/appointment.model.ts |   39 +++++++++++++++++++++++----------------
 1 files changed, 23 insertions(+), 16 deletions(-)

diff --git a/PAMapp/shared/models/appointment.model.ts b/PAMapp/shared/models/appointment.model.ts
index b6daab1..2fe9173 100644
--- a/PAMapp/shared/models/appointment.model.ts
+++ b/PAMapp/shared/models/appointment.model.ts
@@ -39,21 +39,28 @@
 }
 
 export interface AppointmentDetail {
-  id               : number;
-  phone            : string;
-  email            : string;
-  contactType      : string;
-  gender           : string;
-  age              : string;
-  job              : string;
-  requirement      : string;
-  communicateStatus: string;
-  hopeContactTime  : string;
-  otherRequirement : string;
-  appointmentDate  : string;
-  agentNo          : string;
-  customerId       : number;
-  name             : string;
+  age                 : string;
+  agentNo             : string;
+  appointmentDate     : string;
+  appointmentMemoList?: string[];
+  communicateStatus   : string;
+  consultantReadTime  : string;
+  consultantViewTime  : string;
+  contactTime         : string;
+  contactType         : string;
+  customerId          : number;
+  email               : string;
+  gender              : string;
+  hopeContactTime     : string;
+  id                  : number;
+  interviewRecordDTOs : string[];
+  job                 : string;
+  lastModifiedDate    : string;
+  name                : string;
+  otherRequirement    : string;
+  phone               : string;
+  requirement         : string;
+  satisfactionScore?  : number;
 }
 export interface AppointmentParams {
   phone          : string;
@@ -104,4 +111,4 @@
   content: string,
   /** memo id */
   id: number
-}
\ No newline at end of file
+}

--
Gitblit v1.8.0