添加功能

This commit is contained in:
马宝龙
2026-06-25 19:06:27 +08:00
parent 8092f83d71
commit 690ce9d49f
3 changed files with 65 additions and 0 deletions

View File

@@ -93,4 +93,28 @@ public class AnalysisIndustryEmploymentInfoController {
public AjaxResult salaryLevel(@RequestBody QueryParamDto dto) {
return AjaxResult.success(analysisIndustryEmploymentInfoService.salaryLevel(dto));
}
/**
* 行业技能需求TOP10
*
* @param dto 查询参数
* @return 结果列表
*/
@PostMapping("/industrySkill")
// @Log(title = "根据枚举名称查询枚举的所有值", businessType = BusinessType.QUERY)
public AjaxResult industrySkill(@RequestBody QueryParamDto dto) {
return AjaxResult.success(analysisIndustryEmploymentInfoService.industrySkill(dto));
}
/**
* 就业质量指标
*
* @param dto 查询参数
* @return 结果列表
*/
@PostMapping("/qualityIndicator")
// @Log(title = "根据枚举名称查询枚举的所有值", businessType = BusinessType.QUERY)
public AjaxResult qualityIndicator(@RequestBody QueryParamDto dto) {
return AjaxResult.success(analysisIndustryEmploymentInfoService.qualityIndicator(dto));
}
}