From 65bceeecd461806e360970d7035f23bacbcc58b7 Mon Sep 17 00:00:00 2001 From: Mila <Mila@pollex.com.tw> Date: 星期四, 20 一月 2022 16:08:45 +0800 Subject: [PATCH] Merge branch 'Phase3' of https://192.168.0.10:8443/r/pcalife/PAM into Phase3 --- PAMapp/shared/models/appointment.model.ts | 15 ++++++++------- 1 files changed, 8 insertions(+), 7 deletions(-) diff --git a/PAMapp/shared/models/appointment.model.ts b/PAMapp/shared/models/appointment.model.ts index 300c61c..3488334 100644 --- a/PAMapp/shared/models/appointment.model.ts +++ b/PAMapp/shared/models/appointment.model.ts @@ -1,15 +1,16 @@ import { ContactStatus } from "./enum/contact-status"; export interface AppointmentLog { - id : number; - createdDate : string; - lastModifiedDate: string; - customerId : number; - agentNo : string; - status : 'UNFILLED' | 'FILLED'; - score : number; agentName : string; + agentNo : string; + appointmentId : number; + createdDate : string; + customerId : number; customerName : string; + id : number; + lastModifiedDate: string; + score : number; + status : 'UNFILLED' | 'FILLED'; } export interface Appointment { -- Gitblit v1.8.0