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; }