|
|
|
@ -365,9 +365,9 @@ public class PointController {
|
|
|
|
|
|
|
|
|
|
@ApiOperation(value = "3.10.已参与抽奖的人(APP)", notes = "APP")
|
|
|
|
|
@PostMapping("/lottery/participated/{page}/{size}")
|
|
|
|
|
@GlobalInterceptor(checkAppUserLogin = true)
|
|
|
|
|
// @GlobalInterceptor(checkAppUserLogin = true)
|
|
|
|
|
public Result<PageResult<LotteryUserAPPVO>> findParticipatedLotteryUserList(
|
|
|
|
|
@ApiParam(value = "Header中的token信息", required = true) @RequestHeader("Authorization") String token,
|
|
|
|
|
@ApiParam(value = "Header中的token信息") @RequestHeader("Authorization") String token,
|
|
|
|
|
@ApiParam(value = "查询参数") @RequestBody LotteryParticipatedSearchDto lotteryParticipatedSearchDto,
|
|
|
|
|
@ApiParam(value = "页码", required = true) @PathVariable Integer page,
|
|
|
|
|
@ApiParam(value = "每页条数", required = true) @PathVariable Integer size) {
|
|
|
|
@ -411,9 +411,9 @@ public class PointController {
|
|
|
|
|
|
|
|
|
|
@ApiOperation(value = "3.14.抽奖详情(APP)", notes = "APP")
|
|
|
|
|
@GetMapping("/app/lottery/detail/{id}")
|
|
|
|
|
@GlobalInterceptor(checkAppUserLogin = true)
|
|
|
|
|
// @GlobalInterceptor(checkAppUserLogin = true)
|
|
|
|
|
public Result<LotteryDetailAPPVO> findLotteryDetailAPPVO(
|
|
|
|
|
@ApiParam(value = "Header中的token信息", required = true) @RequestHeader("Authorization") String token,
|
|
|
|
|
@ApiParam(value = "Header中的token信息") @RequestHeader("Authorization") String token,
|
|
|
|
|
@ApiParam(value = "抽奖id", required = true) @PathVariable String id) {
|
|
|
|
|
return Result.success(lotteryService.getLotteryDetailAPPVO(id));
|
|
|
|
|
}
|
|
|
|
|