this is 3.24 update

This commit is contained in:
chen-xin-zhi 2025-03-24 11:27:23 +08:00
parent 50639f39e8
commit 1652a7ba00

View File

@ -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<Boolean> checkGeneralGood(@RequestBody CommonRequest commonRequest) {
public BaseResponse<Boolean> 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<Boolean> checkServiceGood(@RequestBody BuySingleServiceGoodVerifyRequest buySingleServiceGoodVerifyRequest) {
public BaseResponse<Boolean> 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();