查询有招聘会的日期列表

This commit is contained in:
2026-01-13 17:22:08 +08:00
parent beeaa0e6b3
commit 2d11855b56
6 changed files with 32 additions and 42 deletions

View File

@@ -35,9 +35,9 @@ public interface IPublicJobFairService {
List<PublicJobFair> getCurrentMonthFairs();
/**
* 按年份查询每日招聘会数量
* 查询有招聘会的日期列表
*/
List<JobFairDailyCountVO> getDailyCountByYear(Integer year);
List<String> getJobFairDates();
// ========== CMS后台管理接口 ==========

View File

@@ -114,8 +114,8 @@ public class PublicJobFairServiceImpl implements IPublicJobFairService {
}
@Override
public List<JobFairDailyCountVO> getDailyCountByYear(Integer year) {
return publicJobFairMapper.getDailyCountByYear(year);
public List<String> getJobFairDates() {
return publicJobFairMapper.getJobFairDates();
}
// ========== CMS后台管理接口实现 ==========