jyy
2021-06-12 393d296e43f0e5f11e524cab5446bcd3eee94e89
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;
   }
}