|
@ -66,10 +66,10 @@ public class CompeteVideoController { |
|
|
return JsonResponse.newInstance().ok(peoSignStatus); |
|
|
return JsonResponse.newInstance().ok(peoSignStatus); |
|
|
} |
|
|
} |
|
|
@MustLogin |
|
|
@MustLogin |
|
|
@ApiOperation(value = "查看教练签到状态(签到用)", notes = "Mr.王---------查看教练的人的签到状态") |
|
|
@ApiOperation(value = "查看裁判签到状态(签到用)", notes = "Mr.王---------查看教练的人的签到状态") |
|
|
@RequestMapping(value = "/selectCoachStatus", method = RequestMethod.POST, produces = {"application/json;charset=UTF-8"}) |
|
|
@RequestMapping(value = "/selectCoachStatus", method = RequestMethod.POST, produces = {"application/json;charset=UTF-8"}) |
|
|
public JsonResponse<PageInfo<VideoProjectVo.CoachSignStatu>> selectCoachSignStatus(@ApiParam @Validated @RequestBody QueryDto<VideoDto.GetSignStatus> params) { |
|
|
public JsonResponse<PageInfo<VideoProjectVo.CoachSignStatu>> selectCoachSignStatus(@ApiParam @Validated @RequestBody QueryDto<VideoDto.GetSignStatus> params) { |
|
|
log.info("查看教练签到状态(签到用):{}",params); |
|
|
log.info("查看裁判签到状态(签到用):{}",params); |
|
|
PageInfo<VideoProjectVo.CoachSignStatu> coachSignStatus = iCompeteVedioService.selectCoachSignStatus(params); |
|
|
PageInfo<VideoProjectVo.CoachSignStatu> coachSignStatus = iCompeteVedioService.selectCoachSignStatus(params); |
|
|
return JsonResponse.newInstance().ok(coachSignStatus); |
|
|
return JsonResponse.newInstance().ok(coachSignStatus); |
|
|
} |
|
|
} |
|
|