export interface Consultant {
|
agentNo : string;
|
name : string;
|
img : string;
|
expertise : string[];
|
avgScore : number;
|
contactStatus? : string;
|
createTime : Date | string;
|
updateTime : Date | string;
|
customerViewTime? : Date | string;
|
role : string;
|
seniority : string,
|
appointments? : Appointment[];
|
}
|
|
export interface Appointment {
|
id : number;
|
phone? : string;
|
email? : string;
|
contactType : string;
|
gender : string;
|
age : string;
|
job : string;
|
requirement : string;
|
communicateStatus : string;
|
hopeContactTime : string;
|
otherRequirement? : string;
|
appointmentDate : Date;
|
lastModifiedDate : Date;
|
agentNo : string;
|
customerId : number;
|
name : string;
|
consultantViewTime?: Date;
|
consultantReadTime?: Date;
|
satisfactionScore? : number;
|
};
|