|
|
@ -34,7 +34,7 @@ public class ExcelController { |
|
|
|
private IExcelService excelService; |
|
|
|
|
|
|
|
@MustLogin |
|
|
|
@ApiOperation(value = "xxx大赛报名表", notes = "") |
|
|
|
@ApiOperation(value = "xxx大赛报名表(导出)", notes = "") |
|
|
|
@RequestMapping(value = "/competeJoin", method = RequestMethod.POST, produces = {"application/json;charset=UTF-8"}) |
|
|
|
public JsonResponse competeJoin(@ApiParam @Validated @RequestBody QueryDto<CompeteDto.CompeteTime> params) throws IOException { |
|
|
|
log.info("xxx大赛报名表:{}",params); |
|
|
@ -44,7 +44,7 @@ public class ExcelController { |
|
|
|
|
|
|
|
|
|
|
|
@MustLogin |
|
|
|
@ApiOperation(value = "参赛人数统计表", notes = "") |
|
|
|
@ApiOperation(value = "参赛人数统计表(导出)", notes = "") |
|
|
|
@RequestMapping(value = "/competeJoinCount", method = RequestMethod.POST, produces = {"application/json;charset=UTF-8"}) |
|
|
|
public JsonResponse competeJoinCount(@ApiParam @Validated @RequestBody QueryDto<CompeteDto.CompeteTime> params) throws IOException { |
|
|
|
log.info("参赛人数统计表:{}",params); |
|
|
@ -54,7 +54,7 @@ public class ExcelController { |
|
|
|
|
|
|
|
|
|
|
|
@MustLogin |
|
|
|
@ApiOperation(value = "XXX比赛报名汇总表", notes = "") |
|
|
|
@ApiOperation(value = "XXX比赛报名汇总表(导出)", notes = "") |
|
|
|
@RequestMapping(value = "/competeAllCount", method = RequestMethod.POST, produces = {"application/json;charset=UTF-8"}) |
|
|
|
public JsonResponse competeAllCount(@ApiParam @Validated @RequestBody QueryDto<CompeteDto.CompeteTime> params) throws IOException { |
|
|
|
log.info("XXX比赛报名汇总表:{}",params); |
|
|
@ -81,7 +81,7 @@ public class ExcelController { |
|
|
|
} |
|
|
|
|
|
|
|
@MustLogin |
|
|
|
@ApiOperation(value = "日程安排中间表", notes = "") |
|
|
|
@ApiOperation(value = "日程安排中间表(查询)", notes = "") |
|
|
|
@RequestMapping(value = "/dailyScheduleProcess", method = RequestMethod.POST, produces = {"application/json;charset=UTF-8"}) |
|
|
|
public JsonResponse<TableVo.DailyScheduleProcess> dailyScheduleProcess(@ApiParam @Validated @RequestBody QueryDto<CompeteDto.CompeteTime> params) { |
|
|
|
log.info("日程安排中间表:{}",params); |
|
|
@ -90,7 +90,7 @@ public class ExcelController { |
|
|
|
} |
|
|
|
|
|
|
|
@MustLogin |
|
|
|
@ApiOperation(value = "日程安排更新", notes = "") |
|
|
|
@ApiOperation(value = "日程安排更新(查询)", notes = "") |
|
|
|
@RequestMapping(value = "/updateAndSearchSchedule", method = RequestMethod.POST, produces = {"application/json;charset=UTF-8"}) |
|
|
|
public JsonResponse<TableVo.DailyScheduleProcess> updateAndSearch(@ApiParam @Validated @RequestBody QueryDto<ProvinceCompeteDto.UpdateAndSearchList> params) { |
|
|
|
log.info("日程安排更新:{}",params); |
|
|
@ -99,7 +99,7 @@ public class ExcelController { |
|
|
|
} |
|
|
|
|
|
|
|
@MustLogin |
|
|
|
@ApiOperation(value = "xxx大赛报名表", notes = "") |
|
|
|
@ApiOperation(value = "xxx大赛报名表(查询)", notes = "") |
|
|
|
@RequestMapping(value = "/enterInfo", method = RequestMethod.POST, produces = {"application/json;charset=UTF-8"}) |
|
|
|
public JsonResponse<TableVo.DailyScheduleProcess> getEnterInfo(@ApiParam @Validated @RequestBody QueryDto<CompeteDto.CompeteTime> params) { |
|
|
|
log.info("日程安排更新:{}",params); |
|
|
|