From 8ece1a33dd0776e8a3cc94d3ac4faf8c6f7ff03c Mon Sep 17 00:00:00 2001
From: Mila <Mila@pollex.com.tw>
Date: 星期一, 17 一月 2022 10:08:26 +0800
Subject: [PATCH] add: TODO#134181 dateTimePicker

---
 PAMapp/shared/models/appointment.model.ts |   20 ++++++++++++++++++++
 1 files changed, 20 insertions(+), 0 deletions(-)

diff --git a/PAMapp/shared/models/appointment.model.ts b/PAMapp/shared/models/appointment.model.ts
index 8919dc9..759a588 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,21 @@
   content: string;
   id     : number;
 }
+
+export interface ToDoneAppointment {
+    appointmentId         : number;
+    contactStatus         : ContactStatus;
+    planCode              : string;
+    policyEntryDate       : string;
+    policyholderIdentityId: string;
+    remark?               : string;
+}
+
+export interface ToCloseAppointment {
+  appointmentId    : number;
+  closedOtherReason: string;
+  closedReason     : string;
+  contactStatus    : ContactStatus;
+  remark?          : string;
+}
+

--
Gitblit v1.8.0