From 66a8dd0cfd0122aee97a6f6859407630d6b4d384 Mon Sep 17 00:00:00 2001 From: Tomas <tomasysh@gmail.com> Date: 星期四, 13 一月 2022 16:51:45 +0800 Subject: [PATCH] update: appointmentService - add closeAppointment() --- PAMapp/shared/models/appointment.model.ts | 19 +++++++++++++++++++ 1 files changed, 19 insertions(+), 0 deletions(-) diff --git a/PAMapp/shared/models/appointment.model.ts b/PAMapp/shared/models/appointment.model.ts index 8919dc9..c6b5d13 100644 --- a/PAMapp/shared/models/appointment.model.ts +++ b/PAMapp/shared/models/appointment.model.ts @@ -1,3 +1,5 @@ +import { ContactStatus } from "./enum/contact-status"; + export interface AppointmentLog { id : number; createdDate : string; @@ -130,3 +132,20 @@ content: string; id : number; } + +export interface ToDoneAppointment { + appointmentId : number; + contactStatus : ContactStatus; + planCode : string; + policyEntryDate : string; + policyholderIdentityId: string; +} + +export interface ToCloseAppointment { + appointmentId : number; + closedOtherReason: string; + closedReason : string; + contactStatus : ContactStatus; + remark : string; +} + -- Gitblit v1.8.0