| | |
| | | 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; |
| | | } |
| | | |
| | | export interface ToInformAppointment { |
| | | appointmentId: number; |
| | | email : string; |
| | | interviewDate: string; |
| | | message : string; |
| | | phone : string; |
| | | } |
| | | |
| | | export interface InterviewRecordInfo { |
| | | content: string; |
| | | interviewDate: string; |
| | | appointmentId: number; |
| | | } |
| | | |
| | | export interface UpdateInterviewRecordInfo { |
| | | /** interviewRecord id */ |
| | | id: number; |
| | | } |