From 1652a7ba00f4d72670c3cb75439fc257631f858a Mon Sep 17 00:00:00 2001 From: chen-xin-zhi <3588068430@qq.com> Date: Mon, 24 Mar 2025 11:27:23 +0800 Subject: [PATCH] this is 3.24 update --- .../cultural/heritage/controller/good/GoodController.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/cultural/heritage/controller/good/GoodController.java b/src/main/java/com/cultural/heritage/controller/good/GoodController.java index a5eb8c0..b1d3585 100644 --- a/src/main/java/com/cultural/heritage/controller/good/GoodController.java +++ b/src/main/java/com/cultural/heritage/controller/good/GoodController.java @@ -43,6 +43,7 @@ import com.cultural.heritage.utils.DecoderUtils; import io.swagger.v3.oas.annotations.Operation; import io.swagger.v3.oas.annotations.tags.Tag; import jakarta.annotation.Resource; +import jakarta.servlet.http.HttpServletRequest; import lombok.extern.slf4j.Slf4j; import org.springframework.beans.BeanUtils; import org.springframework.transaction.annotation.Transactional; @@ -106,10 +107,11 @@ public class GoodController { */ @PostMapping("/checkGeneralGood") @Operation(summary = "小程序端校验常规类商品立即购买", description = "参数:商品id,权限:所有人,方法名:checkGeneralGood") - public BaseResponse checkGeneralGood(@RequestBody CommonRequest commonRequest) { + public BaseResponse checkGeneralGood(@RequestBody CommonRequest commonRequest, HttpServletRequest request) { if (commonRequest == null) { throw new BusinessException(ErrorCode.PARAMS_ERROR); } + userService.getLoginUser(request); Long id = commonRequest.getId(); Good good = goodService.getById(id); goodService.checkGoodIsExist(good); @@ -126,10 +128,11 @@ public class GoodController { */ @PostMapping("/checkServiceGood") @Operation(summary = "小程序端校验服务类商品立即购买", description = "参数:服务类商品校验请求体,权限:所有人,方法名:BuySingleServiceGoodVerifyRequest") - public BaseResponse checkServiceGood(@RequestBody BuySingleServiceGoodVerifyRequest buySingleServiceGoodVerifyRequest) { + public BaseResponse checkServiceGood(@RequestBody BuySingleServiceGoodVerifyRequest buySingleServiceGoodVerifyRequest, HttpServletRequest request) { if (buySingleServiceGoodVerifyRequest == null) { throw new BusinessException(ErrorCode.PARAMS_ERROR); } + userService.getLoginUser(request); // 校验服务类商品预约参数 goodService.validServiceGoodBookingParameter(buySingleServiceGoodVerifyRequest); Long goodId = buySingleServiceGoodVerifyRequest.getGoodId();