| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188 |
- 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;
- }
- }
|