| | |
| | | gender : string; |
| | | hopeContactTime : string; |
| | | id : number; |
| | | interviewRecordDTOs : string[]; |
| | | interviewRecordDTOs : InterviewRecord[]; |
| | | job : string; |
| | | lastModifiedDate : string; |
| | | name : string; |
| | |
| | | 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; |
| | | } |