PAMapp/shared/models/quick-filter.model.ts
¤ñ¹ï·sÀÉ®× @@ -0,0 +1,27 @@ export interface QuestionOption { title : string; detail: Detail[]; type : string; name : string; } interface Detail { value : string; name? : string; className: string; subTitle?: string } export interface FastQueryParams { gender : string, communicationStyles: string[], avgScore : number, status : string, /** "è³æ·±"帶"SENIOR"ã"å¹´è¼"帶"YOUNG"ã"ä¸é"帶"UNLIMITED" */ seniority : string } export interface Selected { option: string; value : any; }