添加功能

This commit is contained in:
马宝龙
2026-07-13 13:25:54 +08:00
parent c27d81f59e
commit c9d7417440
10 changed files with 199 additions and 22 deletions

View File

@@ -39,7 +39,7 @@ public interface ThemeRecruitmentJobMapper {
* @param dto 查询参数
* @return 数
*/
Long queryEmploymentDemandCount(QueryParamDto dto);
Long queryDemandCount(QueryParamDto dto);
/**
* 查询招聘岗位数

View File

@@ -0,0 +1,39 @@
package com.ruoyi.cms.mapper;
import com.ruoyi.cms.domain.dto.QueryParamDto;
import java.math.BigDecimal;
/**
* 产业发展主题库
*
* @author 马宝龙
* @date 2026/7/10
*/
public interface ThemeSectorDevelopMapper {
/**
* 查询产业产值
*
* @param dto 查询参数
* @return 结果
*/
BigDecimal querySectorAmount(QueryParamDto dto);
/**
* 查询企业新增投资额
*
* @param dto 查询参数
* @return 结果
*/
BigDecimal queryCompanyNewInvestmentAmount(QueryParamDto dto);
/**
* 查询创业企业数
*
* @param dto 查询参数
* @return 结果
*/
Long queryStartupCompanyCount(QueryParamDto dto);
}