添加功能

This commit is contained in:
马宝龙
2026-06-30 15:56:21 +08:00
parent f0fdd5981a
commit 51ddc43fb3
5 changed files with 104 additions and 9 deletions

View File

@@ -0,0 +1,20 @@
package com.ruoyi.cms.mapper;
import com.ruoyi.cms.domain.dto.QueryParamDto;
/**
* 求职者主题库
*
* @author 马宝龙
* @date 2026/6/30
*/
public interface ThemeJobSeekerMapper {
/**
* 查询求职人数
*
* @param dto 查询参数
* @return 数
*/
Long querySupplyCount(QueryParamDto dto);
}