暂时关闭兑换奖品接口

This commit is contained in:
谭凯凯 2025-01-13 14:18:11 +08:00 committed by Tankaikai
parent 92b2d2eb7d
commit 4f21e0af7b
1 changed files with 3 additions and 2 deletions

View File

@ -44,8 +44,9 @@ public class AppUserPrizeExchangeController {
@PostMapping("/exchange")
@ApiOperation("兑换")
public Result exchange(@RequestAttribute("userId") Long userId, @RequestBody UserPrizeExchange entity) {
userPrizeExchangeService.exchange(userId, entity);
return Result.success();
//userPrizeExchangeService.exchange(userId, entity);
//return Result.success();
return Result.error("奖品正在路上,请耐心等待");
}
@Login