|
@@ -23,17 +23,17 @@ public class AppJobAdvertisedSearchPageReqVO extends PageParam {
|
|
|
@Schema(description = "工作地区id集合", example = "[]")
|
|
|
private List<Long> areaIds;
|
|
|
|
|
|
- @Schema(description = "工作经验(menduner_exp_type)", example = "1")
|
|
|
- private Integer expType;
|
|
|
+ @Schema(description = "工作经验(menduner_exp_type)", example = "[]")
|
|
|
+ private List<Integer> expType;
|
|
|
|
|
|
- @Schema(description = "学历要求(menduner_education_type)", example = "1")
|
|
|
- private Integer eduType;
|
|
|
+ @Schema(description = "学历要求(menduner_education_type)", example = "[]")
|
|
|
+ private List<Integer> eduType;
|
|
|
|
|
|
- @Schema(description = "薪酬待遇范围(menduner_pay_scope)", example = "12")
|
|
|
- private Integer payType;
|
|
|
+ @Schema(description = "薪酬待遇范围(menduner_pay_scope)", example = "[]")
|
|
|
+ private List<Integer> payType;
|
|
|
|
|
|
- @Schema(description = "求职类型(menduner_job_type)", example = "2")
|
|
|
- private Integer jobType;
|
|
|
+ @Schema(description = "求职类型(menduner_job_type)", example = "[]")
|
|
|
+ private List<Integer> jobType;
|
|
|
|
|
|
@Schema(description = "职位类型", example = "2")
|
|
|
private Long positionId;
|
|
@@ -44,16 +44,15 @@ public class AppJobAdvertisedSearchPageReqVO extends PageParam {
|
|
|
private Long enterpriseId;
|
|
|
|
|
|
@Schema(description = "企业类型(menduner_enterprise_type)", example = "[]")
|
|
|
- private Integer enterpriseType;
|
|
|
+ private List<Integer> enterpriseType;
|
|
|
|
|
|
@Schema(description = "行业信息id集合", example = "[]")
|
|
|
private List<Long> industryIds;
|
|
|
|
|
|
@Schema(description = "人员规模(0-20人,20-99人,100-499人,500-999人,1000-9999人,9999人以上)", example = "1")
|
|
|
- private Integer scale;
|
|
|
+ private List<Integer> scale;
|
|
|
|
|
|
@Schema(description = "融资阶段(未融资,天使轮,A轮,B轮,C轮,D轮以上,已上市,不需要融资)", example = "1")
|
|
|
- private Integer financingStatus;
|
|
|
-
|
|
|
+ private List<Integer> financingStatus;
|
|
|
|
|
|
}
|