当前季度和当月招聘会详情
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
@@ -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后台管理接口 ==========
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user