From 4759d8e45e39b3faafe2ab16774f3d2369d8cb79 Mon Sep 17 00:00:00 2001 From: Tomas <tomasysh@gmail.com> Date: 星期四, 20 一月 2022 15:34:05 +0800 Subject: [PATCH] update: 滿意度 - 因應後端調整 api 更新相關前端程式碼 --- 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