添加功能
This commit is contained in:
@@ -39,7 +39,7 @@ public interface ThemeRecruitmentJobMapper {
|
||||
* @param dto 查询参数
|
||||
* @return 数
|
||||
*/
|
||||
Long queryEmploymentDemandCount(QueryParamDto dto);
|
||||
Long queryDemandCount(QueryParamDto dto);
|
||||
|
||||
/**
|
||||
* 查询招聘岗位数
|
||||
|
||||
@@ -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);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user