| | |
| | | |
| | | export interface StrictQueryParams { |
| | | gender : string; |
| | | avgScore : number; |
| | | status : string; //phase 1 disable |
| | | area : string; |
| | | requirements : string[]; |
| | | otherRequirement: string; |
| | | seniority : string; |
| | | popularTags : string[]; |
| | | otherPopularTags: string; |
| | | gender? : string; |
| | | avgScore? : number; |
| | | status? : string; //phase 1 disable |
| | | area? : string; |
| | | requirements? : string[]; |
| | | otherRequirement?: string; |
| | | seniority? : string; |
| | | popularTags? : string[]; |
| | | otherPopularTags?: string; |
| | | } |
| | | |
| | | export interface AgentOfStrictQuery { |
| | |
| | | name : string; |
| | | img : string; |
| | | expertise : string[]; |
| | | suitability : number; |
| | | avgScore : number; |
| | | contactStatus: null; |
| | | updateTime : null; |
| | | seniority : string; |
| | | role : string; |
| | | new : boolean; |
| | | latestAppointmentId :null |
| | | } |