From 6e783f279e7b1dd1f0fc243d7d8504ede0b25870 Mon Sep 17 00:00:00 2001
From: jyy <jyy>
Date: Sun, 27 Jun 2021 15:47:57 +0800
Subject: [PATCH] 修复业绩bug1
---
zq-erp/src/main/java/com/matrix/system/app/vo/ShoppingGoodsDetailVo.java | 154 +--------------------------------------------------
1 files changed, 3 insertions(+), 151 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 5ef3256..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,7 +47,7 @@
private Integer maxSaleCnt;
@ApiModelProperty(value = "每人限购次数")
- private String limitBuyCnt;
+ private Integer limitBuyCnt;
@ApiModelProperty(value = "充值卡使用范围 是-所有产品 否-部分产品")
private String carIsAll;
@@ -71,155 +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;
- }
-
- public String getIsCourse() {
- return isCourse;
- }
-
- public void setIsCourse(String isCourse) {
- this.isCourse = isCourse;
- }
-
- public Integer getMaxUseCnt() {
- return maxUseCnt;
- }
-
- public void setMaxUseCnt(Integer maxUseCnt) {
- this.maxUseCnt = maxUseCnt;
- }
}
--
Gitblit v1.9.1