From 6ed1e2ebda4cd04099fbf61e4469a94b9990495d Mon Sep 17 00:00:00 2001 From: axindata <1851789500@qq.com> Date: Thu, 20 Feb 2025 10:42:59 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/java/com/buy507/mall/model/PmsProduct.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/mall-dao/src/main/java/com/buy507/mall/model/PmsProduct.java b/mall-dao/src/main/java/com/buy507/mall/model/PmsProduct.java index 6e345a2..96d86d5 100644 --- a/mall-dao/src/main/java/com/buy507/mall/model/PmsProduct.java +++ b/mall-dao/src/main/java/com/buy507/mall/model/PmsProduct.java @@ -188,6 +188,9 @@ public class PmsProduct implements Serializable { @ApiModelProperty(value = "会员中心:1->店长; 2->代理; 3->市代理") private Integer vipCenter; + + @ApiModelProperty(value = "商品积分价格") + private Integer intergrationPrice; public List getProductAttribute() { @@ -661,6 +664,10 @@ public class PmsProduct implements Serializable { public void setVipCenter(Integer vipCenter) {this.vipCenter = vipCenter;} + public Integer getintergrationPrice() {return intergrationPrice;} + + public void setIntergrationPrice(Integer intergrationPrice) {this.intergrationPrice = intergrationPrice;} + @Override public String toString() { StringBuilder sb = new StringBuilder(); -- 2.36.6