| | |
| | | import { ContactStatus } from "./enum/contact-status"; |
| | | |
| | | export interface AppointmentLog { |
| | | id : number; |
| | | createdDate : string; |
| | | lastModifiedDate: string; |
| | | customerId : number; |
| | | agentNo : string; |
| | | status : 'UNFILLED' | 'FILLED'; |
| | | score : number; |
| | | agentName : string; |
| | | agentNo : string; |
| | | appointmentId : number; |
| | | createdDate : string; |
| | | customerId : number; |
| | | customerName : string; |
| | | id : number; |
| | | lastModifiedDate: string; |
| | | score : number; |
| | | status : 'UNFILLED' | 'FILLED'; |
| | | } |
| | | |
| | | export interface Appointment { |
| | | age : string; |
| | | agentNo : string; |
| | | appointmentDate : string; |
| | | appointmentMemoList: AppointmentMemoInfo[] |
| | | communicateStatus : ContactStatus; |
| | | consultantReadTime : string; |
| | | consultantViewTime : string; |
| | | contactTime : string; |
| | | contactType : string; |
| | | customerId : number; |
| | | email : string; |
| | | gender : string; |
| | | hopeContactTime : string; |
| | | id : number; |
| | | interviewRecordDTOs: InterviewRecord[]; |
| | | job : string; |
| | | lastModifiedDate : string; |
| | | name : string; |
| | | otherRequirement : string; |
| | | phone : string; |
| | | requirement : string; |
| | | satisfactionScore : number; |
| | | age : string; |
| | | agentNo : string; |
| | | appointmentClosedInfo: AppointmentClosedInfo; |
| | | appointmentDate : string; |
| | | appointmentMemoList : AppointmentMemoInfo[] |
| | | appointmentNoticeLogs: NoticeLogs[]; |
| | | communicateStatus : ContactStatus; |
| | | consultantReadTime : string; |
| | | consultantViewTime : string; |
| | | contactTime : string; |
| | | contactType : string; |
| | | customerId : number; |
| | | email : string; |
| | | gender : string; |
| | | hopeContactTime : string; |
| | | id : number; |
| | | interviewRecordDTOs : InterviewRecord[]; |
| | | job : string; |
| | | lastModifiedDate : string; |
| | | name : string; |
| | | otherRequirement : string; |
| | | phone : string; |
| | | requirement : string; |
| | | satisfactionScore : number; |
| | | }; |
| | | |
| | | export interface AppointmentClosedInfo { |
| | | appointmentId : number; |
| | | closedOtherReason : string; |
| | | closedReason : string; |
| | | id : number; |
| | | planCode : string; |
| | | policyEntryDate : string; |
| | | policyholderIdentityId: string; |
| | | remark : string; |
| | | } |
| | | |
| | | export interface AppointmentMemoInfo { |
| | | appointmentId: number; |
| | | content : string; |