| | |
| | | import { ContactStatus } from "./enum/contact-status"; |
| | | |
| | | export interface AppointmentLog { |
| | | id : number; |
| | | createdDate : string; |
| | |
| | | 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; |
| | | } |
| | | |