From 5e5dd294d6f7b90940ca9e117c4254ab413b4ad8 Mon Sep 17 00:00:00 2001 From: Mila <Mila@pollex.com.tw> Date: 星期二, 04 一月 2022 11:31:51 +0800 Subject: [PATCH] update TODO#133355 顧問-增加註記客戶備忘 --- PAMapp/shared/models/client.model.ts | 47 +++++++++++++++++++++++++++-------------------- 1 files changed, 27 insertions(+), 20 deletions(-) diff --git a/PAMapp/shared/models/client.model.ts b/PAMapp/shared/models/client.model.ts index ec70c33..e4ac0c8 100644 --- a/PAMapp/shared/models/client.model.ts +++ b/PAMapp/shared/models/client.model.ts @@ -1,22 +1,29 @@ export interface ClientInfo { - 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 + 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