添加功能

This commit is contained in:
马宝龙
2026-07-13 21:59:01 +08:00
parent b18da2a666
commit 9bc8359475
22 changed files with 779 additions and 266 deletions

View File

@@ -21,6 +21,22 @@ public interface ThemeProfessionalTrainMapper {
*/
Long queryCount(QueryParamDto dto);
/**
* 查询培训后就业人数
*
* @param dto 查询参数
* @return 结果
*/
Long queryAfterTrainEmploymentCount(QueryParamDto dto);
/**
* 查询高级技能人才人数
*
* @param dto 查询参数
* @return 结果
*/
Long queryAdvanceSkillTalentCount(QueryParamDto dto);
/**
* 通过技能等级查询
*
@@ -28,4 +44,20 @@ public interface ThemeProfessionalTrainMapper {
* @return 结果列表
*/
List<QueryResultVo> queryBySkillLevel(QueryParamDto dto);
/**
* 重点产业招聘需求对比
*
* @param dto 查询参数
* @return 结果列表
*/
List<QueryResultVo> queryBySector(QueryParamDto dto);
/**
* 重点产业招聘需求对比
*
* @param dto 查询参数
* @return 结果列表
*/
List<QueryResultVo> queryByGroupType(QueryParamDto dto);
}