From 2c621a6a62570df61c38d0a50c5fc788b502af64 Mon Sep 17 00:00:00 2001 From: Mila <Mila@pollex.com.tw> Date: 星期二, 11 一月 2022 10:54:58 +0800 Subject: [PATCH] update: TODO#133608 保戶-調整滿意度評分畫面與wording --- 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