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

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

@@ -23,4 +23,20 @@ public interface JobFairMapper extends BaseMapper<JobFair>
List<JobFair> appList(JobFair jobFair);
List<JobFair> selectAppList(@Param("userId")Long userId, @Param("type")Integer type);
/**
* 查询当季度招聘会信息列表
*
* @param jobFair 招聘会信息
* @return 招聘会信息集合
*/
List<JobFair> getCurrentQuarterFairs(JobFair jobFair);
/**
* 查询当月招聘会信息列表
*
* @param jobFair 招聘会信息
* @return 招聘会信息集合
*/
List<JobFair> getCurrentMonthFairs(JobFair jobFair);
}

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后台管理接口 ==========
/**