From 1625f969871fa40da7de9c8f73b974bfc992c436 Mon Sep 17 00:00:00 2001
From: jyy <jyy>
Date: Thu, 22 Jul 2021 18:01:51 +0800
Subject: [PATCH] 1、部分导出功能

---
 zq-erp/src/main/java/com/matrix/system/shopXcx/bean/ShopSku.java |   35 ++++++++++++++++++++++++++++++-----
 1 files changed, 30 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..5597740 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
@@ -49,6 +49,11 @@
 	 * 价格
 	 */
 	private BigDecimal price;
+
+	/**
+	 *自购提成
+	 */
+	private BigDecimal selfPrice;
 	/**
 	 *推广提成
 	 */
@@ -64,10 +69,13 @@
 	private Integer score;
 
 	/**
-	 * 积分兑换价格
+	 * 积分兑换所需支付金额
 	 */
-	private Integer scorePrice;
-
+	private BigDecimal scorePrice;
+	/**
+	 * 积分兑换所需支付积分
+	 */
+	private Integer scoreCount;
 
 
 	/**
@@ -96,6 +104,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 +273,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;
 	}
 
@@ -270,4 +287,12 @@
 		return id.equals(((ShopSku) obj).getId());
 	}
 
+	public BigDecimal getSelfPrice() {
+		return selfPrice;
+	}
+
+	public void setSelfPrice(BigDecimal selfPrice) {
+		this.selfPrice = selfPrice;
+	}
+
 }
\ No newline at end of file

--
Gitblit v1.9.1