|
@@ -65,6 +65,7 @@ public class AppRecruitAnalysisController {
|
|
|
@Operation(summary = "获取投递简历的性别分布")
|
|
|
@PreAuthenticated
|
|
|
public CommonResult<List<CommonRespVO>> getJobCvSexCount(@Valid RecruitAnalysisReqVO reqVO) {
|
|
|
+ setCommonCondition(reqVO);
|
|
|
return success(jobCvcRelService.getJobCvSexCount(reqVO));
|
|
|
}
|
|
|
|
|
@@ -72,6 +73,7 @@ public class AppRecruitAnalysisController {
|
|
|
@Operation(summary = "获取投递简历的年龄分布")
|
|
|
@PreAuthenticated
|
|
|
public CommonResult<Map<String, Object[]>> getJobCvAgeCount(@Valid RecruitAnalysisReqVO reqVO) {
|
|
|
+ setCommonCondition(reqVO);
|
|
|
return success(jobCvcRelService.getJobCvAgeCount(reqVO));
|
|
|
}
|
|
|
|
|
@@ -79,6 +81,7 @@ public class AppRecruitAnalysisController {
|
|
|
@Operation(summary = "获取投递简历的学历分布")
|
|
|
@PreAuthenticated
|
|
|
public CommonResult<Map<String, Object[]>> getJobCvEduCount(@Valid RecruitAnalysisReqVO reqVO) {
|
|
|
+ setCommonCondition(reqVO);
|
|
|
return success(jobCvcRelService.getJobCvEduCount(reqVO));
|
|
|
}
|
|
|
|
|
@@ -86,6 +89,7 @@ public class AppRecruitAnalysisController {
|
|
|
@Operation(summary = "获取投递简历的工作经验分布")
|
|
|
@PreAuthenticated
|
|
|
public CommonResult<Map<String, Object[]>> getJobCvExpCount(@Valid RecruitAnalysisReqVO reqVO) {
|
|
|
+ setCommonCondition(reqVO);
|
|
|
return success(jobCvcRelService.getJobCvExpCount(reqVO));
|
|
|
}
|
|
|
|