From 648fd188316dd864689e9487715fc44525bedcd0 Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Wed, 27 Apr 2022 16:43:39 +0800 Subject: [PATCH] 20220426 --- zq-erp/src/main/java/com/matrix/system/app/vo/ShoppingGoodsDetailVo.java | 144 +++--------------------------------------------- 1 files changed, 9 insertions(+), 135 deletions(-) diff --git a/zq-erp/src/main/java/com/matrix/system/app/vo/ShoppingGoodsDetailVo.java b/zq-erp/src/main/java/com/matrix/system/app/vo/ShoppingGoodsDetailVo.java index d1be69c..567c6b9 100644 --- a/zq-erp/src/main/java/com/matrix/system/app/vo/ShoppingGoodsDetailVo.java +++ b/zq-erp/src/main/java/com/matrix/system/app/vo/ShoppingGoodsDetailVo.java @@ -3,6 +3,7 @@ import com.matrix.system.hive.bean.ShoppingGoodsCategory; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; +import lombok.Data; import java.math.BigDecimal; import java.util.List; @@ -11,6 +12,7 @@ * @author wzy * @date 2020-12-24 **/ +@Data @ApiModel(value = "ShoppingGoodsDetailVo", description = "商品详情返回参数类") public class ShoppingGoodsDetailVo { @@ -45,13 +47,19 @@ private Integer maxSaleCnt; @ApiModelProperty(value = "每人限购次数") - private String limitBuyCnt; + private Integer limitBuyCnt; @ApiModelProperty(value = "充值卡使用范围 是-所有产品 否-部分产品") private String carIsAll; @ApiModelProperty(value = "赠送金额") private BigDecimal giftPrice; + + @ApiModelProperty(value = "固定/任选套餐 Y-任选 N-固定") + private String isCourse; + + @ApiModelProperty(value = "最大使用次数") + private Integer maxUseCnt; @ApiModelProperty(value = "项目关联产品--配料表、卡项可消费产品") List<ShoppingGoodsDetailVo> assembleProj; @@ -65,139 +73,5 @@ @ApiModelProperty(value = "卡项产品可消费类型") List<ShoppingGoodsCategory> cardCategory; - public BigDecimal getGiftPrice() { - return giftPrice; - } - public void setGiftPrice(BigDecimal giftPrice) { - this.giftPrice = giftPrice; - } - - public String getCarIsAll() { - return carIsAll; - } - - public void setCarIsAll(String carIsAll) { - this.carIsAll = carIsAll; - } - - public String getGoodsNo() { - return goodsNo; - } - - public void setGoodsNo(String goodsNo) { - this.goodsNo = goodsNo; - } - - public String getGoodsName() { - return goodsName; - } - - public void setGoodsName(String goodsName) { - this.goodsName = goodsName; - } - - public BigDecimal getSalePrice() { - return salePrice; - } - - public void setSalePrice(BigDecimal salePrice) { - this.salePrice = salePrice; - } - - public Integer getSaleCnt() { - return saleCnt; - } - - public void setSaleCnt(Integer saleCnt) { - this.saleCnt = saleCnt; - } - - public String getImg() { - return img; - } - - public void setImg(String img) { - this.img = img; - } - - public String getDesc() { - return desc; - } - - public void setDesc(String desc) { - this.desc = desc; - } - - public String getGoodsType() { - return goodsType; - } - - public void setGoodsType(String goodsType) { - this.goodsType = goodsType; - } - - public Integer getVolume() { - return volume; - } - - public void setVolume(Integer volume) { - this.volume = volume; - } - - public String getMeasure() { - return measure; - } - - public void setMeasure(String measure) { - this.measure = measure; - } - - public Integer getMaxSaleCnt() { - return maxSaleCnt; - } - - public void setMaxSaleCnt(Integer maxSaleCnt) { - this.maxSaleCnt = maxSaleCnt; - } - - public String getLimitBuyCnt() { - return limitBuyCnt; - } - - public void setLimitBuyCnt(String limitBuyCnt) { - this.limitBuyCnt = limitBuyCnt; - } - - public List<ShoppingGoodsDetailVo> getAssembleProj() { - return assembleProj; - } - - public void setAssembleProj(List<ShoppingGoodsDetailVo> assembleProj) { - this.assembleProj = assembleProj; - } - - public List<ShoppingGoodsDetailVo> getAssembleTaocanProj() { - return assembleTaocanProj; - } - - public void setAssembleTaocanProj(List<ShoppingGoodsDetailVo> assembleTaocanProj) { - this.assembleTaocanProj = assembleTaocanProj; - } - - public List<ShoppingGoodsDetailVo> getAssembleTaocanProduct() { - return assembleTaocanProduct; - } - - public void setAssembleTaocanProduct(List<ShoppingGoodsDetailVo> assembleTaocanProduct) { - this.assembleTaocanProduct = assembleTaocanProduct; - } - - public List<ShoppingGoodsCategory> getCardCategory() { - return cardCategory; - } - - public void setCardCategory(List<ShoppingGoodsCategory> cardCategory) { - this.cardCategory = cardCategory; - } } -- Gitblit v1.9.1