From 34b08e1c461f5e08675fcff95525956d7c4bef11 Mon Sep 17 00:00:00 2001 From: wayne <wayne8692wayne8692@gmail.com> Date: 星期四, 17 二月 2022 11:38:48 +0800 Subject: [PATCH] Merge branch 'Phase3' into pollex-dev --- PAMapp/shared/models/consultant.model.ts | 33 +++++++++++++++++---------------- 1 files changed, 17 insertions(+), 16 deletions(-) diff --git a/PAMapp/shared/models/consultant.model.ts b/PAMapp/shared/models/consultant.model.ts index 596d61b..69bb11c 100644 --- a/PAMapp/shared/models/consultant.model.ts +++ b/PAMapp/shared/models/consultant.model.ts @@ -1,24 +1,25 @@ import { Appointment } from "./appointment.model"; export interface Consultant { - agentNo : string; - name : string; - img : string; - expertise : string[]; - avgScore : number; - contactStatus? : string; - createTime : Date | string; - updateTime : Date | string; - customerViewTime? : Date | string; - role : string; - seniority : string, - appointments? : Appointment[]; + agentNo : string; + appointments? : Appointment[]; + avgScore : number; + contactStatus? : string; + createTime : string; + customerViewTime?: string; + expertise : string[]; + img : string; + name : string; + role : string; + seniority : string; + updateTime : string; } export interface ConsultantWithAppointmentId extends Consultant { - appointmentId : number; - appointmentDate : string; - appointmentScore?: number; - appointmentStatus: string; + appointmentDate : string; + appointmentId : number; + appointmentLastModifiedDate: string; + appointmentScore? : number; + appointmentStatus : string; } -- Gitblit v1.8.0