From 382794b20c47d0f74317b2ac5bb7b6849986166f Mon Sep 17 00:00:00 2001
From: jyy <935090232@qq.com>
Date: Fri, 19 Mar 2021 13:36:40 +0800
Subject: [PATCH] 积分商城7

---
 zq-erp/src/main/java/com/matrix/system/shopXcx/bean/ShopSku.java |   22 +++++++++++++++++-----
 1 files changed, 17 insertions(+), 5 deletions(-)

diff --git a/zq-erp/src/main/java/com/matrix/system/shopXcx/bean/ShopSku.java b/zq-erp/src/main/java/com/matrix/system/shopXcx/bean/ShopSku.java
index 5d5b051..e33cd09 100644
--- a/zq-erp/src/main/java/com/matrix/system/shopXcx/bean/ShopSku.java
+++ b/zq-erp/src/main/java/com/matrix/system/shopXcx/bean/ShopSku.java
@@ -64,10 +64,13 @@
 	private Integer score;
 
 	/**
-	 * 积分兑换价格
+	 * 积分兑换所需支付金额
 	 */
-	private Integer scorePrice;
-
+	private BigDecimal scorePrice;
+	/**
+	 * 积分兑换所需支付积分
+	 */
+	private Integer scoreCount;
 
 
 	/**
@@ -96,6 +99,15 @@
 
 	@Extend
 	private String goodsName;
+
+
+	public Integer getScoreCount() {
+		return scoreCount;
+	}
+
+	public void setScoreCount(Integer scoreCount) {
+		this.scoreCount = scoreCount;
+	}
 
 	public BigDecimal getSealesPrice() {
 		return sealesPrice;
@@ -256,11 +268,11 @@
 		this.goodsName = goodsName;
 	}
 
-	public Integer getScorePrice() {
+	public BigDecimal getScorePrice() {
 		return scorePrice;
 	}
 
-	public void setScorePrice(Integer scorePrice) {
+	public void setScorePrice(BigDecimal scorePrice) {
 		this.scorePrice = scorePrice;
 	}
 

--
Gitblit v1.9.1