添加功能

This commit is contained in:
马宝龙
2026-06-30 12:55:05 +08:00
parent 0d417b2393
commit f0fdd5981a
6 changed files with 605 additions and 0 deletions

View File

@@ -57,6 +57,31 @@
</select>
<select id="queryRecruitmentJobCount"
parameterType="com.ruoyi.cms.domain.dto.QueryParamDto"
resultType="java.lang.Long">
SELECT COUNT(DISTINCT job_id)
FROM theme_recruitment_job
WHERE
<!-- 引入公共条件 -->
<include refid="commonConditions"/>
</select>
<select id="queryAverageSalary"
parameterType="com.ruoyi.cms.domain.dto.QueryParamDto"
resultType="java.math.BigDecimal">
SELECT
COALESCE(ROUND(AVG(((min_salary + max_salary)/2)), 2), 0)
FROM theme_recruitment_job
WHERE
<!-- 引入公共条件 -->
<include refid="commonConditions"/>
</select>
<select id="laborDemandTrendYear"
parameterType="com.ruoyi.cms.domain.dto.QueryParamDto"