后端:去除 promotion 模块的 setting getting 方法

This commit is contained in:
YunaiV
2019-04-06 20:54:46 +08:00
parent 83ab405b1c
commit d5ac7ea8a7
32 changed files with 222 additions and 1446 deletions

View File

@@ -2,10 +2,14 @@ package cn.iocoder.mall.promotion.application.vo.admins;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.experimental.Accessors;
import java.util.List;
@ApiModel("Banner 分页 VO")
@Data
@Accessors(chain = true)
public class AdminsBannerPageVO {
@ApiModelProperty(value = "Banner 数组")
@@ -13,22 +17,4 @@ public class AdminsBannerPageVO {
@ApiModelProperty(value = "Banner 总数")
private Integer total;
public List<AdminsBannerVO> getList() {
return list;
}
public AdminsBannerPageVO setList(List<AdminsBannerVO> list) {
this.list = list;
return this;
}
public Integer getTotal() {
return total;
}
public AdminsBannerPageVO setTotal(Integer total) {
this.total = total;
return this;
}
}
}

View File

@@ -2,10 +2,14 @@ package cn.iocoder.mall.promotion.application.vo.admins;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.experimental.Accessors;
import java.util.List;
@ApiModel("优惠劵(码)分页 VO")
@Data
@Accessors(chain = true)
public class AdminsCouponTemplatePageVO {
@ApiModelProperty(value = "优惠劵(码)数组")
@@ -13,22 +17,4 @@ public class AdminsCouponTemplatePageVO {
@ApiModelProperty(value = "优惠劵(码)总数")
private Integer total;
public List<AdminsCouponTemplateVO> getList() {
return list;
}
public AdminsCouponTemplatePageVO setList(List<AdminsCouponTemplateVO> list) {
this.list = list;
return this;
}
public Integer getTotal() {
return total;
}
public AdminsCouponTemplatePageVO setTotal(Integer total) {
this.total = total;
return this;
}
}

View File

@@ -2,10 +2,14 @@ package cn.iocoder.mall.promotion.application.vo.admins;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.experimental.Accessors;
import java.util.Date;
@ApiModel("CouponTemplate VO")
@Data
@Accessors(chain = true)
public class AdminsCouponTemplateVO {
// ========== 基本信息 BEGIN ==========
@@ -73,201 +77,4 @@ public class AdminsCouponTemplateVO {
@ApiModelProperty(value = "折扣上限", required = true)
private Date createTime;
public Integer getId() {
return id;
}
public AdminsCouponTemplateVO setId(Integer id) {
this.id = id;
return this;
}
public String getTitle() {
return title;
}
public AdminsCouponTemplateVO setTitle(String title) {
this.title = title;
return this;
}
public String getDescription() {
return description;
}
public AdminsCouponTemplateVO setDescription(String description) {
this.description = description;
return this;
}
public Integer getType() {
return type;
}
public AdminsCouponTemplateVO setType(Integer type) {
this.type = type;
return this;
}
public Integer getCodeType() {
return codeType;
}
public AdminsCouponTemplateVO setCodeType(Integer codeType) {
this.codeType = codeType;
return this;
}
public Integer getStatus() {
return status;
}
public AdminsCouponTemplateVO setStatus(Integer status) {
this.status = status;
return this;
}
public Integer getQuota() {
return quota;
}
public AdminsCouponTemplateVO setQuota(Integer quota) {
this.quota = quota;
return this;
}
public Integer getPriceAvailable() {
return priceAvailable;
}
public AdminsCouponTemplateVO setPriceAvailable(Integer priceAvailable) {
this.priceAvailable = priceAvailable;
return this;
}
public Integer getRangeType() {
return rangeType;
}
public AdminsCouponTemplateVO setRangeType(Integer rangeType) {
this.rangeType = rangeType;
return this;
}
public String getRangeValues() {
return rangeValues;
}
public AdminsCouponTemplateVO setRangeValues(String rangeValues) {
this.rangeValues = rangeValues;
return this;
}
public Integer getDateType() {
return dateType;
}
public AdminsCouponTemplateVO setDateType(Integer dateType) {
this.dateType = dateType;
return this;
}
public Date getValidStartTime() {
return validStartTime;
}
public AdminsCouponTemplateVO setValidStartTime(Date validStartTime) {
this.validStartTime = validStartTime;
return this;
}
public Date getValidEndTime() {
return validEndTime;
}
public AdminsCouponTemplateVO setValidEndTime(Date validEndTime) {
this.validEndTime = validEndTime;
return this;
}
public Integer getFixedStartTerm() {
return fixedStartTerm;
}
public AdminsCouponTemplateVO setFixedStartTerm(Integer fixedStartTerm) {
this.fixedStartTerm = fixedStartTerm;
return this;
}
public Integer getFixedEndTerm() {
return fixedEndTerm;
}
public AdminsCouponTemplateVO setFixedEndTerm(Integer fixedEndTerm) {
this.fixedEndTerm = fixedEndTerm;
return this;
}
public Integer getPreferentialType() {
return preferentialType;
}
public AdminsCouponTemplateVO setPreferentialType(Integer preferentialType) {
this.preferentialType = preferentialType;
return this;
}
public Integer getPercentOff() {
return percentOff;
}
public AdminsCouponTemplateVO setPercentOff(Integer percentOff) {
this.percentOff = percentOff;
return this;
}
public Integer getPriceOff() {
return priceOff;
}
public AdminsCouponTemplateVO setPriceOff(Integer priceOff) {
this.priceOff = priceOff;
return this;
}
public Integer getDiscountPriceLimit() {
return discountPriceLimit;
}
public AdminsCouponTemplateVO setDiscountPriceLimit(Integer discountPriceLimit) {
this.discountPriceLimit = discountPriceLimit;
return this;
}
public Integer getStatFetchNum() {
return statFetchNum;
}
public AdminsCouponTemplateVO setStatFetchNum(Integer statFetchNum) {
this.statFetchNum = statFetchNum;
return this;
}
public Date getCreateTime() {
return createTime;
}
public AdminsCouponTemplateVO setCreateTime(Date createTime) {
this.createTime = createTime;
return this;
}
public Integer getTotal() {
return total;
}
public AdminsCouponTemplateVO setTotal(Integer total) {
this.total = total;
return this;
}
}

View File

@@ -2,10 +2,14 @@ package cn.iocoder.mall.promotion.application.vo.admins;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.experimental.Accessors;
import java.util.List;
@ApiModel("商品推荐分页 VO")
@Data
@Accessors(chain = true)
public class AdminsProductRecommendPageVO {
@ApiModelProperty(value = "商品推荐数组")
@@ -13,22 +17,4 @@ public class AdminsProductRecommendPageVO {
@ApiModelProperty(value = "商品推荐总数")
private Integer total;
public List<AdminsProductRecommendVO> getList() {
return list;
}
public AdminsProductRecommendPageVO setList(List<AdminsProductRecommendVO> list) {
this.list = list;
return this;
}
public Integer getTotal() {
return total;
}
public AdminsProductRecommendPageVO setTotal(Integer total) {
this.total = total;
return this;
}
}
}

View File

@@ -2,10 +2,14 @@ package cn.iocoder.mall.promotion.application.vo.admins;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.experimental.Accessors;
import java.util.Date;
@ApiModel("商品推荐 VO")
@Data
@Accessors(chain = true)
public class AdminsProductRecommendVO {
@ApiModelProperty(value = "编号", required = true, example = "1")
@@ -23,66 +27,4 @@ public class AdminsProductRecommendVO {
@ApiModelProperty(value = "创建时间", required = true, example = "时间戳格式")
private Date createTime;
public Integer getId() {
return id;
}
public AdminsProductRecommendVO setId(Integer id) {
this.id = id;
return this;
}
public Integer getType() {
return type;
}
public AdminsProductRecommendVO setType(Integer type) {
this.type = type;
return this;
}
public Integer getProductSpuId() {
return productSpuId;
}
public AdminsProductRecommendVO setProductSpuId(Integer productSpuId) {
this.productSpuId = productSpuId;
return this;
}
public Integer getSort() {
return sort;
}
public AdminsProductRecommendVO setSort(Integer sort) {
this.sort = sort;
return this;
}
public Integer getStatus() {
return status;
}
public AdminsProductRecommendVO setStatus(Integer status) {
this.status = status;
return this;
}
public String getMemo() {
return memo;
}
public AdminsProductRecommendVO setMemo(String memo) {
this.memo = memo;
return this;
}
public Date getCreateTime() {
return createTime;
}
public AdminsProductRecommendVO setCreateTime(Date createTime) {
this.createTime = createTime;
return this;
}
}
}

View File

@@ -2,10 +2,14 @@ package cn.iocoder.mall.promotion.application.vo.users;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.experimental.Accessors;
import java.util.List;
@ApiModel(value = "商品推荐 VO", description = "不包括 SKU 信息 VO")
@Data
@Accessors(chain = true)
public class UsersProductRecommendVO {
@ApiModelProperty(value = "商品 SPU 编号", required = true, example = "1")
@@ -27,49 +31,4 @@ public class UsersProductRecommendVO {
*/
private Integer price;
public Integer getId() {
return id;
}
public UsersProductRecommendVO setId(Integer id) {
this.id = id;
return this;
}
public String getName() {
return name;
}
public UsersProductRecommendVO setName(String name) {
this.name = name;
return this;
}
public String getSellPoint() {
return sellPoint;
}
public UsersProductRecommendVO setSellPoint(String sellPoint) {
this.sellPoint = sellPoint;
return this;
}
public List<String> getPicUrls() {
return picUrls;
}
public UsersProductRecommendVO setPicUrls(List<String> picUrls) {
this.picUrls = picUrls;
return this;
}
public Integer getPrice() {
return price;
}
public UsersProductRecommendVO setPrice(Integer price) {
this.price = price;
return this;
}
}
}