|
@@ -0,0 +1,188 @@
|
|
|
|
|
+package com.ylx.project.domain.dto;
|
|
|
|
|
+
|
|
|
|
|
+import io.swagger.annotations.ApiModel;
|
|
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
+
|
|
|
|
|
+import java.io.Serializable;
|
|
|
|
|
+import java.math.BigDecimal;
|
|
|
|
|
+
|
|
|
|
|
+@ApiModel("项目新增DTO")
|
|
|
|
|
+public class ProjectAddDTO implements Serializable {
|
|
|
|
|
+ private static final long serialVersionUID = 862152570131989654L;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty("标题")
|
|
|
|
|
+ private String cTitle;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty("项目分类")
|
|
|
|
|
+ private Integer type;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty("封面图")
|
|
|
|
|
+ private String cCover;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty("原价")
|
|
|
|
|
+ private BigDecimal dYuanPrice;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty("标注价格(现价)")
|
|
|
|
|
+ private BigDecimal dPrice;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty("标注价格(现价)")
|
|
|
|
|
+ private BigDecimal priceMin;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty("标注价格(现价)")
|
|
|
|
|
+ private BigDecimal priceMax;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty("商户分佣比例")
|
|
|
|
|
+ private BigDecimal merchantShareRatio;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty("标时")
|
|
|
|
|
+ private Integer standardDuration;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty("计量单位(字典数据)")
|
|
|
|
|
+ private Integer unitType;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty("状态: 0=上架, 1=下架")
|
|
|
|
|
+ private Integer status;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty("是否推荐:0=否,1=是")
|
|
|
|
|
+ private Integer isRecommended;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty("价格是否自定义:0=否,1=是")
|
|
|
|
|
+ private Integer isPriceCustom;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty("标时是否自定义:0=否,1=是")
|
|
|
|
|
+ private Integer isTimeCustom;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty("项目亮点:关联亮点字典表的ID集合")
|
|
|
|
|
+ private String highlightIds;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty("适用人群")
|
|
|
|
|
+ private String targetAudience;
|
|
|
|
|
+
|
|
|
|
|
+ public String getcTitle() {
|
|
|
|
|
+ return cTitle;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setcTitle(String cTitle) {
|
|
|
|
|
+ this.cTitle = cTitle;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public Integer getType() {
|
|
|
|
|
+ return type;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setType(Integer type) {
|
|
|
|
|
+ this.type = type;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getcCover() {
|
|
|
|
|
+ return cCover;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setcCover(String cCover) {
|
|
|
|
|
+ this.cCover = cCover;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public BigDecimal getdYuanPrice() {
|
|
|
|
|
+ return dYuanPrice;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setdYuanPrice(BigDecimal dYuanPrice) {
|
|
|
|
|
+ this.dYuanPrice = dYuanPrice;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public BigDecimal getdPrice() {
|
|
|
|
|
+ return dPrice;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setdPrice(BigDecimal dPrice) {
|
|
|
|
|
+ this.dPrice = dPrice;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public BigDecimal getPriceMin() {
|
|
|
|
|
+ return priceMin;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setPriceMin(BigDecimal priceMin) {
|
|
|
|
|
+ this.priceMin = priceMin;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public BigDecimal getPriceMax() {
|
|
|
|
|
+ return priceMax;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setPriceMax(BigDecimal priceMax) {
|
|
|
|
|
+ this.priceMax = priceMax;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public BigDecimal getMerchantShareRatio() {
|
|
|
|
|
+ return merchantShareRatio;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setMerchantShareRatio(BigDecimal merchantShareRatio) {
|
|
|
|
|
+ this.merchantShareRatio = merchantShareRatio;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public Integer getStandardDuration() {
|
|
|
|
|
+ return standardDuration;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setStandardDuration(Integer standardDuration) {
|
|
|
|
|
+ this.standardDuration = standardDuration;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public Integer getUnitType() {
|
|
|
|
|
+ return unitType;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setUnitType(Integer unitType) {
|
|
|
|
|
+ this.unitType = unitType;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public Integer getStatus() {
|
|
|
|
|
+ return status;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setStatus(Integer status) {
|
|
|
|
|
+ this.status = status;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public Integer getIsRecommended() {
|
|
|
|
|
+ return isRecommended;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setIsRecommended(Integer isRecommended) {
|
|
|
|
|
+ this.isRecommended = isRecommended;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public Integer getIsPriceCustom() {
|
|
|
|
|
+ return isPriceCustom;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setIsPriceCustom(Integer isPriceCustom) {
|
|
|
|
|
+ this.isPriceCustom = isPriceCustom;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public Integer getIsTimeCustom() {
|
|
|
|
|
+ return isTimeCustom;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setIsTimeCustom(Integer isTimeCustom) {
|
|
|
|
|
+ this.isTimeCustom = isTimeCustom;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getHighlightIds() {
|
|
|
|
|
+ return highlightIds;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setHighlightIds(String highlightIds) {
|
|
|
|
|
+ this.highlightIds = highlightIds;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getTargetAudience() {
|
|
|
|
|
+ return targetAudience;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setTargetAudience(String targetAudience) {
|
|
|
|
|
+ this.targetAudience = targetAudience;
|
|
|
|
|
+ }
|
|
|
|
|
+}
|