From 7ac38a02fcda3af1fbf26fa96b67c72ca104c8f3 Mon Sep 17 00:00:00 2001
From: Mila <Mila@pollex.com.tw>
Date: 星期二, 04 一月 2022 11:42:16 +0800
Subject: [PATCH] update TODO#132379 顧問-相片存放路徑未確定, 先隱藏編輯帳戶資訊按鈕

---
 PAMapp/shared/models/client.model.ts |   46 +++++++++++++++++++++++++++-------------------
 1 files changed, 27 insertions(+), 19 deletions(-)

diff --git a/PAMapp/shared/models/client.model.ts b/PAMapp/shared/models/client.model.ts
index e6a0488..e4ac0c8 100644
--- a/PAMapp/shared/models/client.model.ts
+++ b/PAMapp/shared/models/client.model.ts
@@ -1,21 +1,29 @@
 export interface ClientInfo {
-  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,
-  consultantViewTime: string,
-  consultantReadTime: string,
-  contactTime       : string,
-  satisfactionScore : number
+  age                : string,
+  agentNo            : string,
+  appointmentDate    : string,
+  communicateStatus  : string,
+  consultantReadTime : string,
+  consultantViewTime : string,
+  contactTime        : string,
+  contactType        : string,
+  customerId         : number,
+  email              : string,
+  gender             : string,
+  hopeContactTime    : string,
+  id                 : number,
+  job                : string,
+  lastModifiedDate   : string,
+  name               : string,
+  otherRequirement   : string,
+  phone              : string,
+  requirement        : string,
+  satisfactionScore  : number,
+  appointmentMemoList: AppointmentMemoInfo[]
+}
+
+export interface AppointmentMemoInfo {
+  appointmentId: number,
+  content: string,
+  id: number
 }

--
Gitblit v1.8.0