From e53fcbe9fe844b7788b29c5106c1ac24d17c5535 Mon Sep 17 00:00:00 2001 From: 935090232@qq.com <ak473600000> Date: Sat, 08 May 2021 22:40:19 +0800 Subject: [PATCH] Merge branch 'score_shop' into api_score_meger --- zq-erp/src/main/java/com/matrix/system/shopXcx/bean/ShopShoppingCart.java | 32 +++++++++++++++++++++++++++++--- 1 files changed, 29 insertions(+), 3 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..4f27e07 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 @@ -35,7 +35,7 @@ /** * 用户ID */ - private String cartUserId; + private Long cartUserId; /** @@ -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; } @@ -272,11 +298,11 @@ } - public String getCartUserId() { + public Long getCartUserId() { return cartUserId; } - public void setCartUserId(String cartUserId) { + public void setCartUserId(Long cartUserId) { this.cartUserId=cartUserId; } -- Gitblit v1.9.1