添加功能
This commit is contained in:
@@ -0,0 +1,90 @@
|
||||
package com.ruoyi.cms.controller;
|
||||
|
||||
import com.ruoyi.cms.domain.dto.QueryParamDto;
|
||||
import com.ruoyi.cms.service.AnalysisSectorOccupationSkillService;
|
||||
import com.ruoyi.common.core.domain.AjaxResult;
|
||||
import lombok.RequiredArgsConstructor;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
/**
|
||||
* 产业发展与职业技能提升分析
|
||||
*
|
||||
* @author 马宝龙
|
||||
* @date 2026/6/26
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/analysis/sectorOccupationSkill")
|
||||
@RequiredArgsConstructor
|
||||
public class AnalysisSectorOccupationSkillController {
|
||||
|
||||
private final AnalysisSectorOccupationSkillService analysisSectorOccupationSkillService;
|
||||
|
||||
/**
|
||||
* 数据总览
|
||||
*
|
||||
* @param dto 查询参数
|
||||
* @return 数据总览
|
||||
*/
|
||||
@PostMapping("/overview")
|
||||
public AjaxResult overview(@RequestBody QueryParamDto dto) {
|
||||
return AjaxResult.success(analysisSectorOccupationSkillService.overview(dto));
|
||||
}
|
||||
|
||||
/**
|
||||
* 产业发展与人才需求趋势
|
||||
*
|
||||
* @param dto 查询参数
|
||||
* @return 趋势数据
|
||||
*/
|
||||
@PostMapping("/sectorAndTalentDemandTread")
|
||||
public AjaxResult sectorAndTalentDemandTread(@RequestBody QueryParamDto dto) {
|
||||
return AjaxResult.success(analysisSectorOccupationSkillService.sectorAndTalentDemandTread(dto));
|
||||
}
|
||||
|
||||
/**
|
||||
* 重点产业的核心职业技能需求
|
||||
*
|
||||
* @param dto 查询参数
|
||||
* @return 结果列表
|
||||
*/
|
||||
@PostMapping("/coreSkillDemand")
|
||||
public AjaxResult coreSkillDemand(@RequestBody QueryParamDto dto) {
|
||||
return AjaxResult.success(analysisSectorOccupationSkillService.coreSkillDemand(dto));
|
||||
}
|
||||
|
||||
/**
|
||||
* 职业技能供给与缺口分析
|
||||
*
|
||||
* @param dto 查询参数
|
||||
* @return 结果列表
|
||||
*/
|
||||
@PostMapping("/skillSupplyAndGap")
|
||||
public AjaxResult skillSupplyAndGap(@RequestBody QueryParamDto dto) {
|
||||
return AjaxResult.success(analysisSectorOccupationSkillService.skillSupplyAndGap(dto));
|
||||
}
|
||||
|
||||
/**
|
||||
* 重点群体技能培训覆盖率
|
||||
*
|
||||
* @param dto 查询参数
|
||||
* @return 结果列表
|
||||
*/
|
||||
@PostMapping("/keyGroupSkillCoverageRate")
|
||||
public AjaxResult keyGroupSkillCoverageRate(@RequestBody QueryParamDto dto) {
|
||||
return AjaxResult.success(analysisSectorOccupationSkillService.keyGroupSkillCoverageRate(dto));
|
||||
}
|
||||
|
||||
/**
|
||||
* 职业培训技能人才等级分布
|
||||
*
|
||||
* @param dto 查询参数
|
||||
* @return 结果列表
|
||||
*/
|
||||
@PostMapping("/talentSkillLevelDistribution")
|
||||
public AjaxResult talentSkillLevelDistribution(@RequestBody QueryParamDto dto) {
|
||||
return AjaxResult.success(analysisSectorOccupationSkillService.talentSkillLevelDistribution(dto));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user