更新了金额的数据类型BigDecimal

This commit is contained in:
chen-xin-zhi 2024-11-19 18:50:59 +08:00
parent 1c0d0bf8df
commit 1ed5d1f77b
47 changed files with 177 additions and 117 deletions

View File

@ -1,12 +1,22 @@
package com.cultural.heritage.aop; package com.cultural.heritage.aop;
import com.cultural.heritage.annotation.AuthCheck; import com.cultural.heritage.annotation.AuthCheck;
import com.cultural.heritage.common.ErrorCode;
import com.cultural.heritage.constant.UserConstant;
import com.cultural.heritage.exception.BusinessException;
import com.cultural.heritage.model.entity.User;
import com.cultural.heritage.model.enums.UserRoleEnum;
import com.cultural.heritage.service.user.UserService; import com.cultural.heritage.service.user.UserService;
import jakarta.annotation.Resource; import jakarta.annotation.Resource;
import jakarta.servlet.http.HttpServletRequest;
import org.apache.commons.lang3.StringUtils;
import org.aspectj.lang.ProceedingJoinPoint; import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around; import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect; import org.aspectj.lang.annotation.Aspect;
import org.springframework.stereotype.Component; import org.springframework.stereotype.Component;
import org.springframework.web.context.request.RequestAttributes;
import org.springframework.web.context.request.RequestContextHolder;
import org.springframework.web.context.request.ServletRequestAttributes;
/** /**
* 权限校验AOP * 权限校验AOP
@ -24,42 +34,42 @@ public class AuthInterceptor {
@Around("@annotation(authCheck)") @Around("@annotation(authCheck)")
public Object doInterceptor(ProceedingJoinPoint joinPoint, AuthCheck authCheck) throws Throwable { public Object doInterceptor(ProceedingJoinPoint joinPoint, AuthCheck authCheck) throws Throwable {
// 接口的权限 // 接口的权限
// String mustRole = authCheck.mustRole(); String mustRole = authCheck.mustRole();
// RequestAttributes requestAttributes = RequestContextHolder.currentRequestAttributes(); RequestAttributes requestAttributes = RequestContextHolder.currentRequestAttributes();
// HttpServletRequest request = ((ServletRequestAttributes) requestAttributes).getRequest(); HttpServletRequest request = ((ServletRequestAttributes) requestAttributes).getRequest();
//
// //当前登录用户 //当前登录用户
// User loginUser = userService.getLoginUser(request); User loginUser = userService.getLoginUser(request);
// //必须有该权限才通过 //必须有该权限才通过
// if (StringUtils.isNotBlank(mustRole)) { if (StringUtils.isNotBlank(mustRole)) {
// //mustUserRoleEnum是接口权限 //mustUserRoleEnum是接口权限
// UserRoleEnum mustUserRoleEnum = UserRoleEnum.getEnumByValues(mustRole); UserRoleEnum mustUserRoleEnum = UserRoleEnum.getEnumByValues(mustRole);
// if(mustUserRoleEnum == null) { if(mustUserRoleEnum == null) {
// throw new BusinessException(ErrorCode.NO_AUTH_ERROR); throw new BusinessException(ErrorCode.NO_AUTH_ERROR);
// } }
// //用户权限 //用户权限
// String userRole = loginUser.getUserRole(); String userRole = loginUser.getUserRole();
// //根据用户角色获取封装后的枚举类对象 //根据用户角色获取封装后的枚举类对象
// UserRoleEnum userRoleEnum = UserRoleEnum.getEnumByValues(userRole); UserRoleEnum userRoleEnum = UserRoleEnum.getEnumByValues(userRole);
//
// //如果被封号直接拒绝 //如果被封号直接拒绝
// if (UserRoleEnum.BAN.equals(userRoleEnum)) { if (UserRoleEnum.BAN.equals(userRoleEnum)) {
// throw new BusinessException(ErrorCode.NO_AUTH_ERROR); throw new BusinessException(ErrorCode.NO_AUTH_ERROR);
// } }
//
// //如果接口需要Boss权限则需要判断用户是否是boss管理员 //如果接口需要Boss权限则需要判断用户是否是boss管理员
// if (UserRoleEnum.BOSS.equals(mustUserRoleEnum)) { if (UserRoleEnum.BOSS.equals(mustUserRoleEnum)) {
// if (!mustRole.equals(userRole)) { if (!mustRole.equals(userRole)) {
// throw new BusinessException(ErrorCode.NO_AUTH_ERROR); throw new BusinessException(ErrorCode.NO_AUTH_ERROR);
// } }
// } }
// //如果接口需要管理员权限则需要判断用户是否是boss或者admin管理员 //如果接口需要管理员权限则需要判断用户是否是boss或者admin管理员
// if (UserRoleEnum.ADMIN.equals(mustUserRoleEnum)) { if (UserRoleEnum.ADMIN.equals(mustUserRoleEnum)) {
// if (!mustRole.equals(userRole) && !userRole.equals(UserConstant.BOSS_ROLE)) { if (!mustRole.equals(userRole) && !userRole.equals(UserConstant.BOSS_ROLE)) {
// throw new BusinessException(ErrorCode.NO_AUTH_ERROR); throw new BusinessException(ErrorCode.NO_AUTH_ERROR);
// } }
// } }
// } }
//通过权限校验放行 //通过权限校验放行
return joinPoint.proceed(); return joinPoint.proceed();
} }

View File

@ -47,7 +47,7 @@ public class BookingDateController {
@Scheduled(cron = "0 0 0 * * ?") @Scheduled(cron = "0 0 0 * * ?")
@Transactional(rollbackFor = Exception.class) @Transactional(rollbackFor = Exception.class)
@GetMapping("/init") @GetMapping("/init")
@Operation(summary = "初始化未来一天的预约日期", description = "参数权限自动调用方法名initCurrentBookingDate") @Operation(summary = "(自动调用)初始化未来一天的预约日期", description = "参数权限自动调用方法名initCurrentBookingDate")
public void initCurrentBookingDate() { public void initCurrentBookingDate() {
// 初始化预约日期 // 初始化预约日期
List<BookingDate> bookingDateList = new ArrayList<>(); List<BookingDate> bookingDateList = new ArrayList<>();
@ -68,7 +68,7 @@ public class BookingDateController {
* @return 当前预约类型未来四天的预约日期列表 * @return 当前预约类型未来四天的预约日期列表
*/ */
@PostMapping("/list") @PostMapping("/list")
@Operation(summary = "根据预约类别查询未来四天(包括今天)的预约日期", description = "参数:预约类型, 权限所有人方法名listBookingDateByType") @Operation(summary = "(小程序端)根据预约类别查询未来四天(包括今天)的预约日期", description = "参数:预约类型, 权限所有人方法名listBookingDateByType")
public BaseResponse<List<BookingDateVO>> listBookingDateByType(@RequestBody CommonStringRequest commonStringRequest) { public BaseResponse<List<BookingDateVO>> listBookingDateByType(@RequestBody CommonStringRequest commonStringRequest) {
if (commonStringRequest == null || StringUtils.isBlank(commonStringRequest.getType())) { if (commonStringRequest == null || StringUtils.isBlank(commonStringRequest.getType())) {
throw new BusinessException(ErrorCode.PARAMS_ERROR); throw new BusinessException(ErrorCode.PARAMS_ERROR);
@ -95,7 +95,7 @@ public class BookingDateController {
*/ */
@PostMapping("/update") @PostMapping("/update")
@AuthCheck(mustRole = UserConstant.ADMIN_ROLE) @AuthCheck(mustRole = UserConstant.ADMIN_ROLE)
@Operation(summary = "更新当天的预约情况", description = "参数:预约日期更新请求体, 权限:管理员(admin, boss)方法名updateBookingDate") @Operation(summary = "Web端管理员更新当天的预约情况", description = "参数:预约日期更新请求体, 权限:管理员(admin, boss)方法名updateBookingDate")
public BaseResponse<Boolean> updateBookingDate(@RequestBody BookingDateUpdateRequest bookingDateUpdateRequest) { public BaseResponse<Boolean> updateBookingDate(@RequestBody BookingDateUpdateRequest bookingDateUpdateRequest) {
if (bookingDateUpdateRequest == null || bookingDateUpdateRequest.getId() <= 0) { if (bookingDateUpdateRequest == null || bookingDateUpdateRequest.getId() <= 0) {
throw new BusinessException(ErrorCode.PARAMS_ERROR); throw new BusinessException(ErrorCode.PARAMS_ERROR);

View File

@ -131,10 +131,11 @@ public class CartRecordController {
/** /**
* 展示用户批量购买后的订单信息 * 展示用户批量购买后的订单信息
* @param cartRecordQueryVOList 订单商品查询列表 * @param cartRecordQueryVOList 商品id和数量的集合
* @return 订单商品信息列表 * @return 订单商品信息列表
*/ */
@PostMapping("/cart/list") @PostMapping("/cart/list")
@Operation(summary = "展示用户批量购买后的订单信息", description = "参数:商品id和数量的集合权限所有人方法名listCartRecord")
public BaseResponse<List<CartOrderVO>> listCartRecord(@RequestBody List<CartRecordQueryVO> cartRecordQueryVOList, HttpServletRequest request) { public BaseResponse<List<CartOrderVO>> listCartRecord(@RequestBody List<CartRecordQueryVO> cartRecordQueryVOList, HttpServletRequest request) {
if (cartRecordQueryVOList == null) { if (cartRecordQueryVOList == null) {
throw new BusinessException(ErrorCode.PARAMS_ERROR); throw new BusinessException(ErrorCode.PARAMS_ERROR);

View File

@ -5,6 +5,7 @@ import lombok.Data;
import java.io.Serial; import java.io.Serial;
import java.io.Serializable; import java.io.Serializable;
import java.math.BigDecimal;
@Data @Data
@Schema(description = "预约订单添加请求体", requiredProperties = {"type", "clothesType", "deposit", "contactsSnapshot", @Schema(description = "预约订单添加请求体", requiredProperties = {"type", "clothesType", "deposit", "contactsSnapshot",
@ -30,7 +31,7 @@ public class AdvanceOrderAddRequest implements Serializable {
* 定金 * 定金
*/ */
@Schema(description = "定金", example = "100.00") @Schema(description = "定金", example = "100.00")
private Double deposit; private BigDecimal deposit;
/** /**

View File

@ -7,6 +7,7 @@ import lombok.EqualsAndHashCode;
import java.io.Serial; import java.io.Serial;
import java.io.Serializable; import java.io.Serializable;
import java.math.BigDecimal;
@Data @Data
@ -32,14 +33,14 @@ public class AdvanceOrderQueryRequest extends PageRequest implements Serializabl
* 最小定金 * 最小定金
*/ */
@Schema(description = "最小定金", example = "80") @Schema(description = "最小定金", example = "80")
private Double minDeposit; private BigDecimal minDeposit;
/** /**
* 最大定金 * 最大定金
*/ */
@Schema(description = "最大定金", example = "200") @Schema(description = "最大定金", example = "200")
private Double maxDeposit; private BigDecimal maxDeposit;
/** /**

View File

@ -5,6 +5,7 @@ import lombok.Data;
import java.io.Serial; import java.io.Serial;
import java.io.Serializable; import java.io.Serializable;
import java.math.BigDecimal;
@Data @Data
@Schema(description = "购物车记录添加请求体", requiredProperties = {"userId", "goodId", "quantity", "subtotal", "isGoodType"}) @Schema(description = "购物车记录添加请求体", requiredProperties = {"userId", "goodId", "quantity", "subtotal", "isGoodType"})
@ -26,7 +27,7 @@ public class CartRecordAddRequest implements Serializable {
* 小计 * 小计
*/ */
@Schema(description = "小计(商品单价 * 数量)", example = "60") @Schema(description = "小计(商品单价 * 数量)", example = "60")
private Double subtotal; private BigDecimal subtotal;
/** /**
* 是否是常规类商品 * 是否是常规类商品

View File

@ -5,6 +5,7 @@ import lombok.Data;
import java.io.Serial; import java.io.Serial;
import java.io.Serializable; import java.io.Serializable;
import java.math.BigDecimal;
@Data @Data
@Schema(description = "购物车记录更新请求体", requiredProperties = {"id", "userId", "goodId", "quantity", "subtotal"}) @Schema(description = "购物车记录更新请求体", requiredProperties = {"id", "userId", "goodId", "quantity", "subtotal"})
@ -33,7 +34,7 @@ public class CartRecordUpdateRequest implements Serializable {
* 小计 * 小计
*/ */
@Schema(description = "小计(商品单价 * 数量)", example = "60") @Schema(description = "小计(商品单价 * 数量)", example = "60")
private Double subtotal; private BigDecimal subtotal;
@Serial @Serial

View File

@ -5,6 +5,7 @@ import lombok.Data;
import java.io.Serial; import java.io.Serial;
import java.io.Serializable; import java.io.Serializable;
import java.math.BigDecimal;
@Data @Data
@Schema(description = "服装等级添加请求体", requiredProperties = {"clothesType", "image", "minPrice", "maxPrice", "brief"}) @Schema(description = "服装等级添加请求体", requiredProperties = {"clothesType", "image", "minPrice", "maxPrice", "brief"})
@ -28,14 +29,14 @@ public class ClothesGradeAddRequest implements Serializable {
* 最低价格 * 最低价格
*/ */
@Schema(description = "最低价格", example = "80.00") @Schema(description = "最低价格", example = "80.00")
private Double minPrice; private BigDecimal minPrice;
/** /**
* 最高价格 * 最高价格
*/ */
@Schema(description = "最高价格", example = "160") @Schema(description = "最高价格", example = "160")
private Double maxPrice; private BigDecimal maxPrice;
/** /**

View File

@ -5,6 +5,7 @@ import lombok.Data;
import java.io.Serial; import java.io.Serial;
import java.io.Serializable; import java.io.Serializable;
import java.math.BigDecimal;
@Data @Data
@Schema(description = "服装等级更新请求体") @Schema(description = "服装等级更新请求体")
@ -36,14 +37,14 @@ public class ClothesGradeUpdateRequest implements Serializable {
* 最低价格 * 最低价格
*/ */
@Schema(description = "最低价格", example = "80.00") @Schema(description = "最低价格", example = "80.00")
private Double minPrice; private BigDecimal minPrice;
/** /**
* 最高价格 * 最高价格
*/ */
@Schema(description = "最高价格", example = "160") @Schema(description = "最高价格", example = "160")
private Double maxPrice; private BigDecimal maxPrice;
/** /**

View File

@ -5,6 +5,7 @@ import lombok.Data;
import java.io.Serial; import java.io.Serial;
import java.io.Serializable; import java.io.Serializable;
import java.math.BigDecimal;
@Data @Data
@ -45,7 +46,7 @@ public class ClothesInfoAddRequest implements Serializable {
* 服装价格 * 服装价格
*/ */
@Schema(description = "服装价格", example = "100.00") @Schema(description = "服装价格", example = "100.00")
private Double price; private BigDecimal price;
/** /**

View File

@ -7,6 +7,7 @@ import lombok.EqualsAndHashCode;
import java.io.Serial; import java.io.Serial;
import java.io.Serializable; import java.io.Serializable;
import java.math.BigDecimal;
@Data @Data
@EqualsAndHashCode(callSuper = true) @EqualsAndHashCode(callSuper = true)
@ -32,14 +33,14 @@ public class ClothesInfoQueryRequest extends PageRequest implements Serializable
* 最低价格 * 最低价格
*/ */
@Schema(description = "最低价格", example = "100.00") @Schema(description = "最低价格", example = "100.00")
private Double minPrice; private BigDecimal minPrice;
/** /**
* 最高价格 * 最高价格
*/ */
@Schema(description = "最高价格", example = "200.00") @Schema(description = "最高价格", example = "200.00")
private Double maxPrice; private BigDecimal maxPrice;
/** /**

View File

@ -5,6 +5,7 @@ import lombok.Data;
import java.io.Serial; import java.io.Serial;
import java.io.Serializable; import java.io.Serializable;
import java.math.BigDecimal;
@Data @Data
@Schema(description = "服装添加请求体", requiredProperties = {"id", "name", "image", "effectImg", "intro", "price", "clothesType"}) @Schema(description = "服装添加请求体", requiredProperties = {"id", "name", "image", "effectImg", "intro", "price", "clothesType"})
@ -50,7 +51,7 @@ public class ClothesInfoUpdateRequest implements Serializable {
* 服装价格 * 服装价格
*/ */
@Schema(description = "服装价格", example = "100.00") @Schema(description = "服装价格", example = "100.00")
private Double price; private BigDecimal price;
/** /**

View File

@ -5,6 +5,7 @@ import lombok.Data;
import java.io.Serial; import java.io.Serial;
import java.io.Serializable; import java.io.Serializable;
import java.math.BigDecimal;
@Data @Data
@Schema(description = "优惠券添加请求体", requiredProperties = @Schema(description = "优惠券添加请求体", requiredProperties =
@ -22,7 +23,7 @@ public class CouponAddRequest implements Serializable {
* 满减金额 * 满减金额
*/ */
@Schema(description = "满减金额", example = "50") @Schema(description = "满减金额", example = "50")
private Double conditionAmount; private BigDecimal conditionAmount;
/** /**

View File

@ -5,6 +5,7 @@ import lombok.Data;
import java.io.Serial; import java.io.Serial;
import java.io.Serializable; import java.io.Serializable;
import java.math.BigDecimal;
@Data @Data
@Schema(description = "优惠券更新请求体", requiredProperties = @Schema(description = "优惠券更新请求体", requiredProperties =
@ -27,7 +28,7 @@ public class CouponUpdateRequest implements Serializable {
* 满减金额 * 满减金额
*/ */
@Schema(description = "满减金额", example = "50") @Schema(description = "满减金额", example = "50")
private Double conditionAmount; private BigDecimal conditionAmount;
/** /**

View File

@ -5,6 +5,7 @@ import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data; import lombok.Data;
import java.io.Serializable; import java.io.Serializable;
import java.math.BigDecimal;
@Data @Data
@Schema(description = "商品添加请求体", requiredProperties = {"name", "type", "price", "goodImg", "intro", @Schema(description = "商品添加请求体", requiredProperties = {"name", "type", "price", "goodImg", "intro",
@ -28,7 +29,7 @@ public class GoodAddRequest implements Serializable {
* 商品价格 * 商品价格
*/ */
@Schema(description = "商品价格", example = "20.00") @Schema(description = "商品价格", example = "20.00")
private Double price; private BigDecimal price;
/** /**
* 商品图片 * 商品图片

View File

@ -5,6 +5,7 @@ import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data; import lombok.Data;
import java.io.Serializable; import java.io.Serializable;
import java.math.BigDecimal;
@Data @Data
@Schema(description = "商品更新请求体", requiredProperties = {"id", "name", "type", "price", "goodImg", "intro", @Schema(description = "商品更新请求体", requiredProperties = {"id", "name", "type", "price", "goodImg", "intro",
@ -33,7 +34,7 @@ public class GoodUpdateRequest implements Serializable {
* 商品价格 * 商品价格
*/ */
@Schema(description = "商品价格", example = "20.00") @Schema(description = "商品价格", example = "20.00")
private Double price; private BigDecimal price;
/** /**
* 商品图片 * 商品图片

View File

@ -8,6 +8,7 @@ import lombok.Data;
import java.io.Serial; import java.io.Serial;
import java.io.Serializable; import java.io.Serializable;
import java.math.BigDecimal;
import java.util.List; import java.util.List;
@Data @Data
@ -61,7 +62,7 @@ public class OrderAddRequest implements Serializable {
* 订单总金额 * 订单总金额
*/ */
@Schema(description = "订单总金额", example = "500") @Schema(description = "订单总金额", example = "500")
private Double totalAmount; private BigDecimal totalAmount;
/** /**
* 订单状态 * 订单状态

View File

@ -6,6 +6,7 @@ import lombok.Data;
import java.io.Serial; import java.io.Serial;
import java.io.Serializable; import java.io.Serializable;
import java.math.BigDecimal;
@Data @Data
@Schema(description = "订单明细添加请求体", requiredProperties = {"orderId", "goodSnapshot", "priceSnapshot", "quantity", "itemTotalAmount"}) @Schema(description = "订单明细添加请求体", requiredProperties = {"orderId", "goodSnapshot", "priceSnapshot", "quantity", "itemTotalAmount"})
@ -30,7 +31,7 @@ public class OrderItemAddRequest implements Serializable {
* 商品单价快照 * 商品单价快照
*/ */
@Schema(description = "商品单价", example = "30") @Schema(description = "商品单价", example = "30")
private Double priceSnapshot; private BigDecimal priceSnapshot;
/** /**
@ -44,7 +45,7 @@ public class OrderItemAddRequest implements Serializable {
* 订单项金额单价 * 数量 * 订单项金额单价 * 数量
*/ */
@Schema(description = "订单项金额(单价 * 数量)", example = "300") @Schema(description = "订单项金额(单价 * 数量)", example = "300")
private Double itemTotalAmount; private BigDecimal itemTotalAmount;
/** /**

View File

@ -7,6 +7,7 @@ import lombok.Data;
import java.io.Serial; import java.io.Serial;
import java.io.Serializable; import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date; import java.util.Date;
@Data @Data
@ -47,14 +48,14 @@ public class OrderQueryRequest extends PageRequest implements Serializable {
* 订单最小金额 * 订单最小金额
*/ */
@Schema(description = "订单最小金额", example = "50") @Schema(description = "订单最小金额", example = "50")
private Double minTotalAmount; private BigDecimal minTotalAmount;
/** /**
* 订单最大金额 * 订单最大金额
*/ */
@Schema(description = "订单最大金额", example = "350") @Schema(description = "订单最大金额", example = "350")
private Double maxTotalAmount; private BigDecimal maxTotalAmount;
/** /**

View File

@ -5,6 +5,7 @@ import lombok.Data;
import java.io.Serial; import java.io.Serial;
import java.io.Serializable; import java.io.Serializable;
import java.math.BigDecimal;
import java.util.List; import java.util.List;
@Data @Data
@ -66,7 +67,7 @@ public class OrderMainInfoAddRequest implements Serializable {
* 订单总金额 * 订单总金额
*/ */
@Schema(description = "订单总金额", example = "560") @Schema(description = "订单总金额", example = "560")
private Double totalAmount; private BigDecimal totalAmount;
/** /**
* 订单状态 * 订单状态

View File

@ -5,6 +5,7 @@ import lombok.Data;
import java.io.Serial; import java.io.Serial;
import java.io.Serializable; import java.io.Serializable;
import java.math.BigDecimal;
@Data @Data
@Schema(description = "订单优惠券信息", requiredProperties = {"name", "conditionAmount"}) @Schema(description = "订单优惠券信息", requiredProperties = {"name", "conditionAmount"})
@ -21,7 +22,7 @@ public class CouponSnapshot implements Serializable {
* 满减金额 * 满减金额
*/ */
@Schema(description = "满减金额", example = "50") @Schema(description = "满减金额", example = "50")
private Double conditionAmount; private BigDecimal conditionAmount;

View File

@ -5,6 +5,7 @@ import lombok.Data;
import java.io.Serial; import java.io.Serial;
import java.io.Serializable; import java.io.Serializable;
import java.math.BigDecimal;
@Data @Data
@Schema(description = "订单商品信息", requiredProperties = {"name", "type", "price", "goodImg", "festivalOrder", "reserveDate"}) @Schema(description = "订单商品信息", requiredProperties = {"name", "type", "price", "goodImg", "festivalOrder", "reserveDate"})
@ -27,7 +28,7 @@ public class GoodSnapshot implements Serializable {
* 商品价格 * 商品价格
*/ */
@Schema(description = "商品价格", example = "200.00") @Schema(description = "商品价格", example = "200.00")
private Double price; private BigDecimal price;
/** /**
* 商品图片 * 商品图片

View File

@ -10,6 +10,7 @@ import lombok.Data;
import java.io.Serial; import java.io.Serial;
import java.io.Serializable; import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date; import java.util.Date;
/** /**
@ -42,7 +43,7 @@ public class AdvanceOrder implements Serializable {
/** /**
* 定金 * 定金
*/ */
private Double deposit; private BigDecimal deposit;
/** /**

View File

@ -7,6 +7,7 @@ import lombok.Data;
import java.io.Serial; import java.io.Serial;
import java.io.Serializable; import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date; import java.util.Date;
/** /**
@ -42,7 +43,7 @@ public class CartRecord implements Serializable {
/** /**
* 小计 * 小计
*/ */
private Double subtotal; private BigDecimal subtotal;
/** /**

View File

@ -7,6 +7,7 @@ import lombok.Data;
import java.io.Serial; import java.io.Serial;
import java.io.Serializable; import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date; import java.util.Date;
/** /**
@ -41,13 +42,13 @@ public class ClothesGrade implements Serializable {
/** /**
* 最低价格 * 最低价格
*/ */
private Double minPrice; private BigDecimal minPrice;
/** /**
* 最高价格 * 最高价格
*/ */
private Double maxPrice; private BigDecimal maxPrice;
/** /**

View File

@ -7,6 +7,7 @@ import lombok.Data;
import java.io.Serial; import java.io.Serial;
import java.io.Serializable; import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date; import java.util.Date;
/** /**
@ -53,7 +54,7 @@ public class ClothesInfo implements Serializable {
/** /**
* 服装价格 * 服装价格
*/ */
private Double price; private BigDecimal price;
/** /**

View File

@ -10,6 +10,7 @@ import lombok.Data;
import java.io.Serial; import java.io.Serial;
import java.io.Serializable; import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date; import java.util.Date;
/** /**
@ -34,7 +35,7 @@ public class Coupon implements Serializable {
/** /**
* 满减金额 * 满减金额
*/ */
private Double conditionAmount; private BigDecimal conditionAmount;
/** /**

View File

@ -9,6 +9,7 @@ import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data; import lombok.Data;
import java.io.Serial; import java.io.Serial;
import java.math.BigDecimal;
import java.util.Date; import java.util.Date;
/** /**
@ -37,7 +38,7 @@ public class Good {
/** /**
* 商品价格 * 商品价格
*/ */
private Double price; private BigDecimal price;
/** /**
* 商品图片 * 商品图片

View File

@ -14,6 +14,7 @@ import lombok.Data;
import java.io.Serial; import java.io.Serial;
import java.io.Serializable; import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date; import java.util.Date;
@ -80,7 +81,7 @@ public class Order implements Serializable {
/** /**
* 订单总金额 * 订单总金额
*/ */
private Double totalAmount; private BigDecimal totalAmount;
/** /**

View File

@ -11,6 +11,7 @@ import lombok.Data;
import java.io.Serial; import java.io.Serial;
import java.io.Serializable; import java.io.Serializable;
import java.math.BigDecimal;
/** /**
* 订单明细 * 订单明细
@ -47,7 +48,7 @@ public class OrderItems implements Serializable {
* 商品单价快照 * 商品单价快照
*/ */
@Schema(description = "商品单价", example = "15.00") @Schema(description = "商品单价", example = "15.00")
private Double priceSnapshot; private BigDecimal priceSnapshot;
/** /**
@ -61,7 +62,7 @@ public class OrderItems implements Serializable {
* 订单项金额单价 * 数量 * 订单项金额单价 * 数量
*/ */
@Schema(description = "订单项金额(单价 * 数量)", example = "55.00") @Schema(description = "订单项金额(单价 * 数量)", example = "55.00")
private Double itemTotalAmount; private BigDecimal itemTotalAmount;
/** /**
* 预约日期 * 预约日期

View File

@ -6,6 +6,7 @@ import lombok.Data;
import java.io.Serial; import java.io.Serial;
import java.io.Serializable; import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date; import java.util.Date;
@Data @Data
@ -33,7 +34,7 @@ public class AdvanceOrderVO implements Serializable {
/** /**
* 定金 * 定金
*/ */
private Double deposit; private BigDecimal deposit;
/** /**

View File

@ -5,6 +5,7 @@ import lombok.Data;
import java.io.Serial; import java.io.Serial;
import java.io.Serializable; import java.io.Serializable;
import java.math.BigDecimal;
@Data @Data
public class CartRecordVO implements Serializable { public class CartRecordVO implements Serializable {
@ -33,7 +34,7 @@ public class CartRecordVO implements Serializable {
/** /**
* 小计 * 小计
*/ */
private Double subtotal; private BigDecimal subtotal;
/** /**

View File

@ -4,6 +4,7 @@ import lombok.Data;
import java.io.Serial; import java.io.Serial;
import java.io.Serializable; import java.io.Serializable;
import java.math.BigDecimal;
@Data @Data
public class ClothesGradeVO implements Serializable { public class ClothesGradeVO implements Serializable {
@ -30,13 +31,13 @@ public class ClothesGradeVO implements Serializable {
/** /**
* 最低价格 * 最低价格
*/ */
private Double minPrice; private BigDecimal minPrice;
/** /**
* 最高价格 * 最高价格
*/ */
private Double maxPrice; private BigDecimal maxPrice;
/** /**

View File

@ -4,6 +4,7 @@ import lombok.Data;
import java.io.Serial; import java.io.Serial;
import java.io.Serializable; import java.io.Serializable;
import java.math.BigDecimal;
@Data @Data
public class ClothesInfoLabelVO implements Serializable { public class ClothesInfoLabelVO implements Serializable {
@ -35,7 +36,7 @@ public class ClothesInfoLabelVO implements Serializable {
/** /**
* 服装价格 * 服装价格
*/ */
private Double price; private BigDecimal price;

View File

@ -4,6 +4,7 @@ import lombok.Data;
import java.io.Serial; import java.io.Serial;
import java.io.Serializable; import java.io.Serializable;
import java.math.BigDecimal;
@Data @Data
public class ClothesInfoVO implements Serializable { public class ClothesInfoVO implements Serializable {
@ -42,7 +43,7 @@ public class ClothesInfoVO implements Serializable {
/** /**
* 服装价格 * 服装价格
*/ */
private Double price; private BigDecimal price;
/** /**

View File

@ -4,6 +4,7 @@ import lombok.Data;
import java.io.Serial; import java.io.Serial;
import java.io.Serializable; import java.io.Serializable;
import java.math.BigDecimal;
@Data @Data
public class GoodVO implements Serializable { public class GoodVO implements Serializable {
@ -26,7 +27,7 @@ public class GoodVO implements Serializable {
/** /**
* 商品价格 * 商品价格
*/ */
private Double price; private BigDecimal price;
/** /**
* 商品图片 * 商品图片

View File

@ -4,6 +4,7 @@ import lombok.Data;
import java.io.Serial; import java.io.Serial;
import java.io.Serializable; import java.io.Serializable;
import java.math.BigDecimal;
@Data @Data
public class ServiceGoodCardVO implements Serializable { public class ServiceGoodCardVO implements Serializable {
@ -26,7 +27,7 @@ public class ServiceGoodCardVO implements Serializable {
/** /**
* 商品价格 * 商品价格
*/ */
private Double price; private BigDecimal price;
/** /**
* 商品图片 * 商品图片

View File

@ -10,6 +10,7 @@ import lombok.Data;
import java.io.Serial; import java.io.Serial;
import java.io.Serializable; import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date; import java.util.Date;
import java.util.List; import java.util.List;
@ -64,7 +65,7 @@ public class OrderVO implements Serializable {
/** /**
* 订单总金额 * 订单总金额
*/ */
private Double totalAmount; private BigDecimal totalAmount;
/** /**
* 订单状态 * 订单状态

View File

@ -16,6 +16,8 @@ import org.apache.commons.lang3.ObjectUtils;
import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.StringUtils;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import java.math.BigDecimal;
@Service @Service
public class AdvanceOrderServiceImpl extends ServiceImpl<AdvanceOrderMapper, AdvanceOrder> implements AdvanceOrderService { public class AdvanceOrderServiceImpl extends ServiceImpl<AdvanceOrderMapper, AdvanceOrder> implements AdvanceOrderService {
@ -27,7 +29,7 @@ public class AdvanceOrderServiceImpl extends ServiceImpl<AdvanceOrderMapper, Adv
public void validAdvanceOrder(AdvanceOrder advanceOrder) { public void validAdvanceOrder(AdvanceOrder advanceOrder) {
String type = advanceOrder.getType(); String type = advanceOrder.getType();
String clothesType = advanceOrder.getClothesType(); String clothesType = advanceOrder.getClothesType();
Double deposit = advanceOrder.getDeposit(); BigDecimal deposit = advanceOrder.getDeposit();
ContactsSnapshot contactsSnapshot = advanceOrder.getContactsSnapshot(); ContactsSnapshot contactsSnapshot = advanceOrder.getContactsSnapshot();
String specificDate = advanceOrder.getSpecificDate(); String specificDate = advanceOrder.getSpecificDate();
String timeSlot = advanceOrder.getTimeSlot(); String timeSlot = advanceOrder.getTimeSlot();
@ -37,7 +39,7 @@ public class AdvanceOrderServiceImpl extends ServiceImpl<AdvanceOrderMapper, Adv
String orderStatus = advanceOrder.getOrderStatus(); String orderStatus = advanceOrder.getOrderStatus();
Long userId = advanceOrder.getUserId(); Long userId = advanceOrder.getUserId();
if (ObjectUtils.isEmpty(deposit) || deposit <= 0) { if (ObjectUtils.isEmpty(deposit) || deposit.compareTo(BigDecimal.ZERO) <= 0) {
throw new BusinessException(ErrorCode.PARAMS_ERROR, "定金参数错误"); throw new BusinessException(ErrorCode.PARAMS_ERROR, "定金参数错误");
} }
if (ObjectUtils.anyNull(contactsSnapshot, isIndoors, isMakeup, isPhotography, userId)) { if (ObjectUtils.anyNull(contactsSnapshot, isIndoors, isMakeup, isPhotography, userId)) {
@ -67,8 +69,8 @@ public class AdvanceOrderServiceImpl extends ServiceImpl<AdvanceOrderMapper, Adv
public QueryWrapper<AdvanceOrder> getQueryWrapper(AdvanceOrderQueryRequest advanceOrderQueryRequest) { public QueryWrapper<AdvanceOrder> getQueryWrapper(AdvanceOrderQueryRequest advanceOrderQueryRequest) {
Long id = advanceOrderQueryRequest.getId(); Long id = advanceOrderQueryRequest.getId();
String type = advanceOrderQueryRequest.getType(); String type = advanceOrderQueryRequest.getType();
Double minDeposit = advanceOrderQueryRequest.getMinDeposit(); BigDecimal minDeposit = advanceOrderQueryRequest.getMinDeposit();
Double maxDeposit = advanceOrderQueryRequest.getMaxDeposit(); BigDecimal maxDeposit = advanceOrderQueryRequest.getMaxDeposit();
String startTime = advanceOrderQueryRequest.getStartTime(); String startTime = advanceOrderQueryRequest.getStartTime();
String endTime = advanceOrderQueryRequest.getEndTime(); String endTime = advanceOrderQueryRequest.getEndTime();
String orderStatus = advanceOrderQueryRequest.getOrderStatus(); String orderStatus = advanceOrderQueryRequest.getOrderStatus();

View File

@ -15,6 +15,7 @@ import org.apache.commons.lang3.ObjectUtils;
import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.StringUtils;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import java.math.BigDecimal;
import java.util.List; import java.util.List;
@Service @Service
@ -33,8 +34,8 @@ public class ClothesGradeServiceImpl extends ServiceImpl<ClothesGradeMapper, Clo
Long id = clothesGrade.getId(); Long id = clothesGrade.getId();
String clothesType = clothesGrade.getClothesType(); String clothesType = clothesGrade.getClothesType();
String image = clothesGrade.getImage(); String image = clothesGrade.getImage();
Double minPrice = clothesGrade.getMinPrice(); BigDecimal minPrice = clothesGrade.getMinPrice();
Double maxPrice = clothesGrade.getMaxPrice(); BigDecimal maxPrice = clothesGrade.getMaxPrice();
String brief = clothesGrade.getBrief(); String brief = clothesGrade.getBrief();
if (update) { if (update) {
@ -42,13 +43,13 @@ public class ClothesGradeServiceImpl extends ServiceImpl<ClothesGradeMapper, Clo
throw new BusinessException(ErrorCode.PARAMS_ERROR, "参数id错误"); throw new BusinessException(ErrorCode.PARAMS_ERROR, "参数id错误");
} }
} }
if (ObjectUtils.isEmpty(minPrice) || minPrice <= 0) { if (ObjectUtils.isEmpty(minPrice) || minPrice.compareTo(BigDecimal.ZERO) <= 0) {
throw new BusinessException(ErrorCode.PARAMS_ERROR, "最低价格参数错误"); throw new BusinessException(ErrorCode.PARAMS_ERROR, "最低价格参数错误");
} }
if (ObjectUtils.isEmpty(maxPrice) || maxPrice <= 0) { if (ObjectUtils.isEmpty(maxPrice) || maxPrice.compareTo(BigDecimal.ZERO) <= 0) {
throw new BusinessException(ErrorCode.PARAMS_ERROR, "最高价格参数错误"); throw new BusinessException(ErrorCode.PARAMS_ERROR, "最高价格参数错误");
} }
if (minPrice >= maxPrice) { if (minPrice.compareTo(BigDecimal.ZERO) >= maxPrice.compareTo(BigDecimal.ZERO)) {
throw new BusinessException(ErrorCode.PARAMS_ERROR, "最低价格不能高于最高价格"); throw new BusinessException(ErrorCode.PARAMS_ERROR, "最低价格不能高于最高价格");
} }
if (StringUtils.isAnyBlank(clothesType, image, brief)) { if (StringUtils.isAnyBlank(clothesType, image, brief)) {

View File

@ -14,6 +14,8 @@ import org.apache.commons.lang3.ObjectUtils;
import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.StringUtils;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import java.math.BigDecimal;
@Service @Service
public class ClothesInfoServiceImpl extends ServiceImpl<ClothesInfoMapper, ClothesInfo> implements ClothesInfoService { public class ClothesInfoServiceImpl extends ServiceImpl<ClothesInfoMapper, ClothesInfo> implements ClothesInfoService {
@ -28,7 +30,7 @@ public class ClothesInfoServiceImpl extends ServiceImpl<ClothesInfoMapper, Cloth
String image = clothesInfo.getImage(); String image = clothesInfo.getImage();
String effectImg = clothesInfo.getEffectImg(); String effectImg = clothesInfo.getEffectImg();
String intro = clothesInfo.getIntro(); String intro = clothesInfo.getIntro();
Double price = clothesInfo.getPrice(); BigDecimal price = clothesInfo.getPrice();
String clothesType = clothesInfo.getClothesType(); String clothesType = clothesInfo.getClothesType();
if (update) { if (update) {
if (id == null) { if (id == null) {
@ -38,7 +40,7 @@ public class ClothesInfoServiceImpl extends ServiceImpl<ClothesInfoMapper, Cloth
if (StringUtils.isAnyBlank(name, image, effectImg, intro, clothesType)) { if (StringUtils.isAnyBlank(name, image, effectImg, intro, clothesType)) {
throw new BusinessException(ErrorCode.PARAMS_ERROR, "参数不全"); throw new BusinessException(ErrorCode.PARAMS_ERROR, "参数不全");
} }
if (ObjectUtils.isEmpty(price) || price < 0) { if (ObjectUtils.isEmpty(price) || price.compareTo(BigDecimal.ZERO) < 0) {
throw new BusinessException(ErrorCode.PARAMS_ERROR, "价格参数错误"); throw new BusinessException(ErrorCode.PARAMS_ERROR, "价格参数错误");
} }
} }
@ -51,8 +53,8 @@ public class ClothesInfoServiceImpl extends ServiceImpl<ClothesInfoMapper, Cloth
public QueryWrapper<ClothesInfo> getQueryWrapper(ClothesInfoQueryRequest clothesInfoQueryRequest) { public QueryWrapper<ClothesInfo> getQueryWrapper(ClothesInfoQueryRequest clothesInfoQueryRequest) {
Long id = clothesInfoQueryRequest.getId(); Long id = clothesInfoQueryRequest.getId();
String name = clothesInfoQueryRequest.getName(); String name = clothesInfoQueryRequest.getName();
Double minPrice = clothesInfoQueryRequest.getMinPrice(); BigDecimal minPrice = clothesInfoQueryRequest.getMinPrice();
Double maxPrice = clothesInfoQueryRequest.getMaxPrice(); BigDecimal maxPrice = clothesInfoQueryRequest.getMaxPrice();
String clothesType = clothesInfoQueryRequest.getClothesType(); String clothesType = clothesInfoQueryRequest.getClothesType();
String sortField = clothesInfoQueryRequest.getSortField(); String sortField = clothesInfoQueryRequest.getSortField();
String sortOrder = clothesInfoQueryRequest.getSortOrder(); String sortOrder = clothesInfoQueryRequest.getSortOrder();

View File

@ -22,6 +22,7 @@ import org.apache.commons.lang3.ObjectUtils;
import org.springframework.beans.BeanUtils; import org.springframework.beans.BeanUtils;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import java.math.BigDecimal;
import java.util.List; import java.util.List;
@Service @Service
@ -53,7 +54,7 @@ public class CartRecordServiceImpl extends ServiceImpl<CartRecordMapper, CartRec
CartRecord cartRecord = this.baseMapper.selectOne(queryWrapper); CartRecord cartRecord = this.baseMapper.selectOne(queryWrapper);
if (cartRecord != null) { if (cartRecord != null) {
cartRecord.setQuantity(cartRecord.getQuantity() + cartRecordAddRequest.getQuantity()); cartRecord.setQuantity(cartRecord.getQuantity() + cartRecordAddRequest.getQuantity());
cartRecord.setSubtotal(cartRecord.getSubtotal() + cartRecordAddRequest.getSubtotal()); cartRecord.setSubtotal(cartRecord.getSubtotal().add(cartRecordAddRequest.getSubtotal()));
boolean result = this.updateById(cartRecord); boolean result = this.updateById(cartRecord);
ThrowUtils.throwIf(!result, ErrorCode.OPERATION_ERROR); ThrowUtils.throwIf(!result, ErrorCode.OPERATION_ERROR);
} else { } else {
@ -104,7 +105,7 @@ public class CartRecordServiceImpl extends ServiceImpl<CartRecordMapper, CartRec
Long userId = cartRecord.getUserId(); Long userId = cartRecord.getUserId();
Long goodId = cartRecord.getGoodId(); Long goodId = cartRecord.getGoodId();
Integer quantity = cartRecord.getQuantity(); Integer quantity = cartRecord.getQuantity();
Double subtotal = cartRecord.getSubtotal(); BigDecimal subtotal = cartRecord.getSubtotal();
Integer isGoodType = cartRecord.getIsGoodType(); Integer isGoodType = cartRecord.getIsGoodType();
if (update) { if (update) {
if (userId == null) { if (userId == null) {
@ -118,7 +119,7 @@ public class CartRecordServiceImpl extends ServiceImpl<CartRecordMapper, CartRec
if (ObjectUtils.isEmpty(quantity) || quantity < 1) { if (ObjectUtils.isEmpty(quantity) || quantity < 1) {
throw new BusinessException(ErrorCode.PARAMS_ERROR, "请传递正确的商品数量"); throw new BusinessException(ErrorCode.PARAMS_ERROR, "请传递正确的商品数量");
} }
if (ObjectUtils.isEmpty(subtotal) || subtotal <= 0) { if (ObjectUtils.isEmpty(subtotal) || subtotal.compareTo(BigDecimal.ZERO) <= 0) {
throw new BusinessException(ErrorCode.PARAMS_ERROR, "价格错误"); throw new BusinessException(ErrorCode.PARAMS_ERROR, "价格错误");
} }
if (ObjectUtils.isEmpty(isGoodType) || isGoodType != 1 && isGoodType != 0) { if (ObjectUtils.isEmpty(isGoodType) || isGoodType != 1 && isGoodType != 0) {

View File

@ -14,6 +14,7 @@ import org.apache.commons.lang3.ObjectUtils;
import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.StringUtils;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import java.math.BigDecimal;
import java.util.Date; import java.util.Date;
@Service @Service
@ -54,7 +55,7 @@ public class CouponServiceImpl extends ServiceImpl<CouponMapper, Coupon> impleme
public void validCoupon(Coupon coupon, boolean update) { public void validCoupon(Coupon coupon, boolean update) {
Long id = coupon.getId(); Long id = coupon.getId();
String name = coupon.getName(); String name = coupon.getName();
Double conditionAmount = coupon.getConditionAmount(); BigDecimal conditionAmount = coupon.getConditionAmount();
Integer requirePoints = coupon.getRequirePoints(); Integer requirePoints = coupon.getRequirePoints();
Integer totalNum = coupon.getTotalNum(); Integer totalNum = coupon.getTotalNum();
Integer residueNum = coupon.getResidueNum(); Integer residueNum = coupon.getResidueNum();
@ -70,7 +71,7 @@ public class CouponServiceImpl extends ServiceImpl<CouponMapper, Coupon> impleme
throw new BusinessException(ErrorCode.PARAMS_ERROR, "参数id错误"); throw new BusinessException(ErrorCode.PARAMS_ERROR, "参数id错误");
} }
} }
if (ObjectUtils.isEmpty(conditionAmount) || conditionAmount <= 0) { if (ObjectUtils.isEmpty(conditionAmount) || conditionAmount.compareTo(BigDecimal.ZERO) <= 0) {
throw new BusinessException(ErrorCode.PARAMS_ERROR, "满减价格错误"); throw new BusinessException(ErrorCode.PARAMS_ERROR, "满减价格错误");
} }
if (ObjectUtils.isEmpty(requirePoints) || requirePoints <= 0) { if (ObjectUtils.isEmpty(requirePoints) || requirePoints <= 0) {

View File

@ -15,6 +15,7 @@ import org.apache.commons.lang3.StringUtils;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import org.springframework.util.CollectionUtils; import org.springframework.util.CollectionUtils;
import java.math.BigDecimal;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;
@ -79,7 +80,7 @@ public class GoodServiceImpl extends ServiceImpl<GoodMapper, Good> implements Go
String label = good.getLabel(); String label = good.getLabel();
Integer inventory = good.getInventory(); Integer inventory = good.getInventory();
Integer festivalOrder = good.getFestivalOrder(); Integer festivalOrder = good.getFestivalOrder();
Double price = good.getPrice(); BigDecimal price = good.getPrice();
if (update) { if (update) {
if (id == null) { if (id == null) {
@ -95,7 +96,7 @@ public class GoodServiceImpl extends ServiceImpl<GoodMapper, Good> implements Go
if (ObjectUtils.isEmpty(festivalOrder) || festivalOrder <= 0) { if (ObjectUtils.isEmpty(festivalOrder) || festivalOrder <= 0) {
throw new BusinessException(ErrorCode.PARAMS_ERROR, "节日参数错误"); throw new BusinessException(ErrorCode.PARAMS_ERROR, "节日参数错误");
} }
if (ObjectUtils.isEmpty(price) || price <= 0) { if (ObjectUtils.isEmpty(price) || price.compareTo(BigDecimal.ZERO) <= 0) {
throw new BusinessException(ErrorCode.PARAMS_ERROR, "商品价格不能小于等于0"); throw new BusinessException(ErrorCode.PARAMS_ERROR, "商品价格不能小于等于0");
} }

View File

@ -27,6 +27,7 @@ import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.BeanUtils; import org.springframework.beans.BeanUtils;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import java.math.BigDecimal;
import java.util.Date; import java.util.Date;
import java.util.List; import java.util.List;
@ -61,8 +62,8 @@ public class OrderServiceImpl extends ServiceImpl<OrderMapper, Order> implements
} }
Long userId = orderQueryRequest.getUserId(); Long userId = orderQueryRequest.getUserId();
Long orderId = orderQueryRequest.getOrderId(); Long orderId = orderQueryRequest.getOrderId();
Double minTotalAmount = orderQueryRequest.getMinTotalAmount(); BigDecimal minTotalAmount = orderQueryRequest.getMinTotalAmount();
Double maxTotalAmount = orderQueryRequest.getMaxTotalAmount(); BigDecimal maxTotalAmount = orderQueryRequest.getMaxTotalAmount();
String orderStatus = orderQueryRequest.getOrderStatus(); String orderStatus = orderQueryRequest.getOrderStatus();
String orderNumber = orderQueryRequest.getOrderNumber(); String orderNumber = orderQueryRequest.getOrderNumber();
Date startTime = orderQueryRequest.getStartTime(); Date startTime = orderQueryRequest.getStartTime();
@ -99,7 +100,7 @@ public class OrderServiceImpl extends ServiceImpl<OrderMapper, Order> implements
String orderNumber = orderMainInfoAddRequest.getOrderNumber(); String orderNumber = orderMainInfoAddRequest.getOrderNumber();
String orderStatus = orderMainInfoAddRequest.getOrderStatus(); String orderStatus = orderMainInfoAddRequest.getOrderStatus();
String note = orderMainInfoAddRequest.getNote(); String note = orderMainInfoAddRequest.getNote();
Double totalAmount = orderMainInfoAddRequest.getTotalAmount(); BigDecimal totalAmount = orderMainInfoAddRequest.getTotalAmount();
List<OrderItemMainInfoAddRequest> orderItemMainInfoAddRequestList = orderMainInfoAddRequest.getOrderItemMainInfoAddRequestList(); List<OrderItemMainInfoAddRequest> orderItemMainInfoAddRequestList = orderMainInfoAddRequest.getOrderItemMainInfoAddRequestList();
@ -134,7 +135,7 @@ public class OrderServiceImpl extends ServiceImpl<OrderMapper, Order> implements
orderItemAddRequest.setGoodSnapshot(goodSnapshot); orderItemAddRequest.setGoodSnapshot(goodSnapshot);
orderItemAddRequest.setPriceSnapshot(goodSnapshot.getPrice()); orderItemAddRequest.setPriceSnapshot(goodSnapshot.getPrice());
orderItemAddRequest.setQuantity(quantity); orderItemAddRequest.setQuantity(quantity);
orderItemAddRequest.setItemTotalAmount(goodSnapshot.getPrice() * quantity); orderItemAddRequest.setItemTotalAmount(goodSnapshot.getPrice().multiply(BigDecimal.valueOf(quantity)));
orderItemAddRequest.setReservationDate(reservationDate); orderItemAddRequest.setReservationDate(reservationDate);
orderItemAddRequest.setTimeSlot(timeSlot); orderItemAddRequest.setTimeSlot(timeSlot);
return orderItemAddRequest; return orderItemAddRequest;
@ -166,9 +167,9 @@ public class OrderServiceImpl extends ServiceImpl<OrderMapper, Order> implements
String orderNumber = order.getOrderNumber(); String orderNumber = order.getOrderNumber();
Long userId = order.getUserId(); Long userId = order.getUserId();
String userName = order.getUserName(); String userName = order.getUserName();
Double totalAmount = order.getTotalAmount(); BigDecimal totalAmount = order.getTotalAmount();
String orderStatus = order.getOrderStatus(); String orderStatus = order.getOrderStatus();
if (ObjectUtils.isEmpty(totalAmount) || totalAmount <= 0) { if (ObjectUtils.isEmpty(totalAmount) || totalAmount.compareTo(BigDecimal.ZERO) <= 0) {
throw new BusinessException(ErrorCode.PARAMS_ERROR, "价格错误"); throw new BusinessException(ErrorCode.PARAMS_ERROR, "价格错误");
} }
if (ObjectUtils.isEmpty(userId)) { if (ObjectUtils.isEmpty(userId)) {

View File

@ -1,17 +1,17 @@
spring: spring:
datasource: datasource:
# 生产环境 # 生产环境
# driver-class-name: com.mysql.cj.jdbc.Driver
# url: jdbc:mysql://154.8.193.216:3306/feiyi?serverTimezone=Asia/Shanghai
# username: feiyi
# password: 123456asd
# 测试环境
driver-class-name: com.mysql.cj.jdbc.Driver driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://123.249.108.160:3306/feiyi?serverTimezone=Asia/Shanghai url: jdbc:mysql://154.8.193.216:3306/feiyi?serverTimezone=Asia/Shanghai
username: feiyi username: feiyi
password: 123456asd password: 123456asd
# 测试环境
# driver-class-name: com.mysql.cj.jdbc.Driver
# url: jdbc:mysql://123.249.108.160:3306/feiyi?serverTimezone=Asia/Shanghai
# username: feiyi
# password: 123456asd
hikari: hikari:
max-lifetime: 120000 max-lifetime: 120000
data: data:

View File

@ -1,5 +1,7 @@
package com.cultural.heritage.test; package com.cultural.heritage.test;
import java.math.BigDecimal;
public class Test { public class Test {
public static void main(String[] args) { public static void main(String[] args) {
// Date date = new Date(); // Date date = new Date();
@ -22,5 +24,8 @@ public class Test {
// System.out.println(StringUtils.isAnyBlank("333", "333", null, "dfs")); // System.out.println(StringUtils.isAnyBlank("333", "333", null, "dfs"));
// System.out.println(StringUtils.isAnyBlank(null)); // System.out.println(StringUtils.isAnyBlank(null));
// System.out.println(ObjectUtils.anyNull(null)); // System.out.println(ObjectUtils.anyNull(null));
Integer quantity = 10;
BigDecimal bigDecimal = BigDecimal.valueOf(quantity);
System.out.println(bigDecimal);
} }
} }