This commit is contained in:
wuchunlei
2025-03-03 15:55:56 +08:00
parent b7e07f9a7e
commit d6f320863b
21 changed files with 280 additions and 6 deletions

View File

@@ -82,6 +82,10 @@ public class BuyOrder implements Serializable {
* 优惠金额
*/
private BigDecimal districtMoney;
/**
* VIP优惠金额
*/
private BigDecimal vipDiscountAmount;
/**
* 实收金额
*/

View File

@@ -42,6 +42,10 @@ public class ShopProduct implements Serializable {
* 商品活动价格
*/
private BigDecimal activityPrice;
/**
* 是否有vip折扣
*/
private Integer isVipPrice;
/**
* 商品重量
*/
@@ -186,4 +190,8 @@ public class ShopProduct implements Serializable {
//课程id
@TableField(exist = false)
private List<ShopProductCourseEntity> courseIds;
//vip价格
@TableField(exist = false)
private BigDecimal vipPrice;
}