查询有招聘会的日期列表
This commit is contained in:
@@ -82,12 +82,12 @@ public class PublicJobFairController extends BaseController {
|
||||
}
|
||||
|
||||
/**
|
||||
* 按年份查询每日招聘会数量
|
||||
* 查询有招聘会的日期列表
|
||||
*/
|
||||
@BussinessLog(title = "按年份查询每日招聘会数量")
|
||||
@ApiOperation("按年份查询每日招聘会数量")
|
||||
@GetMapping("/dailyCount/{year}")
|
||||
public AjaxResult dailyCountByYear(@ApiParam("年份") @PathVariable Integer year) {
|
||||
return success(publicJobFairService.getDailyCountByYear(year));
|
||||
@BussinessLog(title = "查询有招聘会的日期列表")
|
||||
@ApiOperation("查询有招聘会的日期列表")
|
||||
@GetMapping("/dates")
|
||||
public AjaxResult getJobFairDates() {
|
||||
return success(publicJobFairService.getJobFairDates());
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user