添加功能
This commit is contained in:
@@ -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));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user