保誠-保戶業務員媒合平台
wayne
2022-02-17 a3716f72066d25d745f4d5103ff23a553c3e102b
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;
}