当前季度和当月招聘会详情

This commit is contained in:
2026-01-13 17:12:06 +08:00
parent 7cb1fbb726
commit beeaa0e6b3
20 changed files with 1760 additions and 1 deletions

View File

@@ -37,6 +37,21 @@ public interface PublicJobFairMapper extends BaseMapper<PublicJobFair> {
*/
Integer checkUserSignUp(@Param("jobFairId") String jobFairId, @Param("personId") Long personId);
/**
* 查询当季度招聘会信息列表
*/
List<PublicJobFair> getCurrentQuarterFairs();
/**
* 查询当月招聘会信息列表
*/
List<PublicJobFair> getCurrentMonthFairs();
/**
* 按年份查询每日招聘会数量
*/
List<JobFairDailyCountVO> getDailyCountByYear(@Param("year") Integer year);
// ========== CMS后台管理接口 ==========
/**