添加功能
This commit is contained in:
@@ -4,6 +4,7 @@ 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;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.List;
|
||||
@@ -123,4 +124,101 @@ public interface ThemeRecruitmentJobMapper {
|
||||
* @return 热力图列表
|
||||
*/
|
||||
List<HeatmapVo> heatmap(QueryParamDto dto);
|
||||
|
||||
/**
|
||||
* 招聘需求规模趋势 - 年度
|
||||
*
|
||||
* @param dto 查询参数
|
||||
* @return 趋势列表
|
||||
*/
|
||||
List<TreadVo> recruitmentTrendYear(QueryParamDto dto);
|
||||
|
||||
/**
|
||||
* 招聘需求规模趋势 - 季度
|
||||
*
|
||||
* @param dto 查询参数
|
||||
* @return 趋势列表
|
||||
*/
|
||||
List<TreadVo> recruitmentTrendQuarter(QueryParamDto dto);
|
||||
|
||||
/**
|
||||
* 招聘需求规模趋势 - 月度
|
||||
*
|
||||
* @param dto 查询参数
|
||||
* @return 趋势列表
|
||||
*/
|
||||
List<TreadVo> recruitmentTrendMonth(QueryParamDto dto);
|
||||
|
||||
/**
|
||||
* 重点产业招聘需求对比
|
||||
*
|
||||
* @param dto 查询参数
|
||||
* @return 结果列表
|
||||
*/
|
||||
List<QueryResultVo> majorIndustryRecruitment(QueryParamDto dto);
|
||||
|
||||
|
||||
/**
|
||||
* 重点监测行业劳动力动态走势 - 年度
|
||||
*
|
||||
* @param dto 查询参数
|
||||
* @return 趋势列表
|
||||
*/
|
||||
List<TreadVo> majorIndustryLaborForceTreadYear(QueryParamDto dto);
|
||||
|
||||
/**
|
||||
* 重点监测行业劳动力动态走势 - 季度
|
||||
*
|
||||
* @param dto 查询参数
|
||||
* @return 趋势列表
|
||||
*/
|
||||
List<TreadVo> majorIndustryLaborForceTreadQuarter(QueryParamDto dto);
|
||||
|
||||
/**
|
||||
* 重点监测行业劳动力动态走势 - 月度
|
||||
*
|
||||
* @param dto 查询参数
|
||||
* @return 趋势列表
|
||||
*/
|
||||
List<TreadVo> majorIndustryLaborForceTreadMonth(QueryParamDto dto);
|
||||
|
||||
/**
|
||||
* 不同类型企业用工规模
|
||||
*
|
||||
* @param dto 查询参数
|
||||
* @return 结果列表
|
||||
*/
|
||||
List<QueryResultVo> companyRecruitmentCount(QueryParamDto dto);
|
||||
|
||||
/**
|
||||
* 不同企业类型招聘活跃度
|
||||
*
|
||||
* @param dto 查询参数
|
||||
* @return 结果列表
|
||||
*/
|
||||
List<TreadVo> companyRecruitmentWay(QueryParamDto dto);
|
||||
|
||||
/**
|
||||
* 不同类型企业的人才结构需求
|
||||
*
|
||||
* @param dto 查询参数
|
||||
* @return 结果列表
|
||||
*/
|
||||
List<TreadVo> companyRecruitmentEducationLevel(QueryParamDto dto);
|
||||
|
||||
/**
|
||||
* 招聘需求区域分布
|
||||
*
|
||||
* @param dto 查询参数
|
||||
* @return 结果列表
|
||||
*/
|
||||
List<QueryResultVo> recruitmentArea(QueryParamDto dto);
|
||||
|
||||
/**
|
||||
* 承诺薪酬分布分布
|
||||
*
|
||||
* @param dto 查询参数
|
||||
* @return 结果列表
|
||||
*/
|
||||
List<QueryResultVo> commitmentSalary(QueryParamDto dto);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user