添加功能

This commit is contained in:
马宝龙
2026-06-29 20:01:46 +08:00
parent dd57a43aac
commit 0d417b2393
16 changed files with 2384 additions and 126 deletions

View File

@@ -1,8 +1,10 @@
package com.ruoyi.cms.mapper;
import com.ruoyi.cms.domain.dto.EmploymentRegisterSqlDto;
import com.ruoyi.cms.domain.dto.IndustryEmploymentInfoSqlDto;
import com.ruoyi.cms.domain.dto.QueryParamDto;
import com.ruoyi.cms.domain.vo.HeatmapVo;
import com.ruoyi.cms.domain.vo.MajorIndustryEmploymentMonitorTreadVo;
import com.ruoyi.cms.domain.vo.QueryResultVo;
import com.ruoyi.cms.domain.vo.TreadVo;
@@ -26,6 +28,14 @@ public interface ThemeEmploymentRegisterMapper {
*/
Long queryEmploymentCount(QueryParamDto dto);
/**
* 获取各种就业登记人数
*
* @param dto 获取参数
* @return 人数
*/
EmploymentRegisterSqlDto queryKindEmploymentCount(QueryParamDto dto);
/**
* 查询创业企业总数
*
@@ -129,4 +139,46 @@ public interface ThemeEmploymentRegisterMapper {
* @return 热力图列表
*/
List<HeatmapVo> heatmap(QueryParamDto dto);
/**
* 就业增长趋势 - 年度
*
* @param dto 查询参数
* @return 趋势列表
*/
List<MajorIndustryEmploymentMonitorTreadVo> employmentTrendYear(QueryParamDto dto);
/**
* 就业增长趋势 - 季度
*
* @param dto 查询参数
* @return 趋势列表
*/
List<MajorIndustryEmploymentMonitorTreadVo> employmentTrendQuarter(QueryParamDto dto);
/**
* 就业增长趋势 - 月度
*
* @param dto 查询参数
* @return 趋势列表
*/
List<MajorIndustryEmploymentMonitorTreadVo> employmentTrendMonth(QueryParamDto dto);
/**
* 查询各行业就业人数
*
* @param dto 查询参数
* @return 数
*/
List<QueryResultVo> queryEmploymentCountByIndustry(QueryParamDto dto);
/**
* 查询各岗位类型就业人数
*
* @param dto 查询参数
* @return 数
*/
List<QueryResultVo> queryEmploymentCountByJobType(QueryParamDto dto);
}