ProjectAddDTO.java 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. package com.ylx.project.domain.dto;
  2. import io.swagger.annotations.ApiModel;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import java.io.Serializable;
  5. import java.math.BigDecimal;
  6. @ApiModel("项目新增DTO")
  7. public class ProjectAddDTO implements Serializable {
  8. private static final long serialVersionUID = 862152570131989654L;
  9. @ApiModelProperty("标题")
  10. private String cTitle;
  11. @ApiModelProperty("项目分类")
  12. private Integer type;
  13. @ApiModelProperty("封面图")
  14. private String cCover;
  15. @ApiModelProperty("原价")
  16. private BigDecimal dYuanPrice;
  17. @ApiModelProperty("标注价格(现价)")
  18. private BigDecimal dPrice;
  19. @ApiModelProperty("标注价格(现价)")
  20. private BigDecimal priceMin;
  21. @ApiModelProperty("标注价格(现价)")
  22. private BigDecimal priceMax;
  23. @ApiModelProperty("商户分佣比例")
  24. private BigDecimal merchantShareRatio;
  25. @ApiModelProperty("标时")
  26. private Integer standardDuration;
  27. @ApiModelProperty("计量单位(字典数据)")
  28. private Integer unitType;
  29. @ApiModelProperty("状态: 0=上架, 1=下架")
  30. private Integer status;
  31. @ApiModelProperty("是否推荐:0=否,1=是")
  32. private Integer isRecommended;
  33. @ApiModelProperty("价格是否自定义:0=否,1=是")
  34. private Integer isPriceCustom;
  35. @ApiModelProperty("标时是否自定义:0=否,1=是")
  36. private Integer isTimeCustom;
  37. @ApiModelProperty("项目亮点:关联亮点字典表的ID集合")
  38. private String highlightIds;
  39. @ApiModelProperty("适用人群")
  40. private String targetAudience;
  41. public String getcTitle() {
  42. return cTitle;
  43. }
  44. public void setcTitle(String cTitle) {
  45. this.cTitle = cTitle;
  46. }
  47. public Integer getType() {
  48. return type;
  49. }
  50. public void setType(Integer type) {
  51. this.type = type;
  52. }
  53. public String getcCover() {
  54. return cCover;
  55. }
  56. public void setcCover(String cCover) {
  57. this.cCover = cCover;
  58. }
  59. public BigDecimal getdYuanPrice() {
  60. return dYuanPrice;
  61. }
  62. public void setdYuanPrice(BigDecimal dYuanPrice) {
  63. this.dYuanPrice = dYuanPrice;
  64. }
  65. public BigDecimal getdPrice() {
  66. return dPrice;
  67. }
  68. public void setdPrice(BigDecimal dPrice) {
  69. this.dPrice = dPrice;
  70. }
  71. public BigDecimal getPriceMin() {
  72. return priceMin;
  73. }
  74. public void setPriceMin(BigDecimal priceMin) {
  75. this.priceMin = priceMin;
  76. }
  77. public BigDecimal getPriceMax() {
  78. return priceMax;
  79. }
  80. public void setPriceMax(BigDecimal priceMax) {
  81. this.priceMax = priceMax;
  82. }
  83. public BigDecimal getMerchantShareRatio() {
  84. return merchantShareRatio;
  85. }
  86. public void setMerchantShareRatio(BigDecimal merchantShareRatio) {
  87. this.merchantShareRatio = merchantShareRatio;
  88. }
  89. public Integer getStandardDuration() {
  90. return standardDuration;
  91. }
  92. public void setStandardDuration(Integer standardDuration) {
  93. this.standardDuration = standardDuration;
  94. }
  95. public Integer getUnitType() {
  96. return unitType;
  97. }
  98. public void setUnitType(Integer unitType) {
  99. this.unitType = unitType;
  100. }
  101. public Integer getStatus() {
  102. return status;
  103. }
  104. public void setStatus(Integer status) {
  105. this.status = status;
  106. }
  107. public Integer getIsRecommended() {
  108. return isRecommended;
  109. }
  110. public void setIsRecommended(Integer isRecommended) {
  111. this.isRecommended = isRecommended;
  112. }
  113. public Integer getIsPriceCustom() {
  114. return isPriceCustom;
  115. }
  116. public void setIsPriceCustom(Integer isPriceCustom) {
  117. this.isPriceCustom = isPriceCustom;
  118. }
  119. public Integer getIsTimeCustom() {
  120. return isTimeCustom;
  121. }
  122. public void setIsTimeCustom(Integer isTimeCustom) {
  123. this.isTimeCustom = isTimeCustom;
  124. }
  125. public String getHighlightIds() {
  126. return highlightIds;
  127. }
  128. public void setHighlightIds(String highlightIds) {
  129. this.highlightIds = highlightIds;
  130. }
  131. public String getTargetAudience() {
  132. return targetAudience;
  133. }
  134. public void setTargetAudience(String targetAudience) {
  135. this.targetAudience = targetAudience;
  136. }
  137. }