| | |
| | | phone : string; |
| | | requirement : string; |
| | | satisfactionScore : number; |
| | | appointmentNoticeLogs: NoticeLogs[]; |
| | | }; |
| | | |
| | | export interface AppointmentMemoInfo { |
| | |
| | | lastModifiedBy : string; |
| | | lastModifiedDate: string; |
| | | } |
| | | |
| | | export interface NoticeLogs { |
| | | id: number, |
| | | phone: string, |
| | | email: string, |
| | | appointmentId: number, |
| | | content: string, |
| | | createdDate: string |
| | | } |
| | | export interface AppointmentWithConsultantInfo extends Appointment { |
| | | consultantAvatar : string; |
| | | consultantExpertList: string[]; |
| | | consultantName : string; |
| | | contactStatus : string; |
| | | updateTime : string; |
| | | } |
| | | |
| | | export interface AppointmentDetail { |
| | | age : string; |
| | | agentNo : string; |
| | | appointmentDate : string; |
| | | appointmentMemoList?: string[]; |
| | | communicateStatus : string; |
| | | 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 AppointmentParams { |
| | | age : string; |