From 00efd2e4db8157ece4116c956c314803ed073042 Mon Sep 17 00:00:00 2001 From: 935090232@qq.com <ak473600000> Date: Sat, 03 Apr 2021 16:39:15 +0800 Subject: [PATCH] 会员中心手工调整积分 --- zq-erp/src/main/java/com/matrix/system/shopXcx/bean/ShopShoppingCart.java | 26 ++++++++++++++++++++++++++ 1 files changed, 26 insertions(+), 0 deletions(-) diff --git a/zq-erp/src/main/java/com/matrix/system/shopXcx/bean/ShopShoppingCart.java b/zq-erp/src/main/java/com/matrix/system/shopXcx/bean/ShopShoppingCart.java index fffc389..e39c2d4 100644 --- a/zq-erp/src/main/java/com/matrix/system/shopXcx/bean/ShopShoppingCart.java +++ b/zq-erp/src/main/java/com/matrix/system/shopXcx/bean/ShopShoppingCart.java @@ -82,6 +82,16 @@ */ @Extend private BigDecimal price; + /** + * 积分兑换所需支付金额 + */ + @Extend + private BigDecimal scorePrice; + /** + * 积分兑换所需支付积分 + */ + @Extend + private Integer scoreCount; /** * 产品手机端封面地址 @@ -180,6 +190,22 @@ this.increaseAndDecrease = increaseAndDecrease; } + public BigDecimal getScorePrice() { + return scorePrice; + } + + public void setScorePrice(BigDecimal scorePrice) { + this.scorePrice = scorePrice; + } + + public Integer getScoreCount() { + return scoreCount; + } + + public void setScoreCount(Integer scoreCount) { + this.scoreCount = scoreCount; + } + public Integer getModifyCartNumber() { return modifyCartNumber; } -- Gitblit v1.9.1