CouponRuleCppsDto.java 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. package com.java110.dto.couponRuleCpps;
  2. import com.java110.dto.PageDto;
  3. import java.io.Serializable;
  4. import java.util.Date;
  5. /**
  6. * @ClassName FloorDto
  7. * @Description 规则优惠券数据层封装
  8. * @Author wuxw
  9. * @Date 2019/4/24 8:52
  10. * @Version 1.0
  11. * add by wuxw 2019/4/24
  12. **/
  13. public class CouponRuleCppsDto extends PageDto implements Serializable {
  14. private String quantity;
  15. private String crcId;
  16. private String cppId;
  17. private String couponName;
  18. private String ruleId;
  19. private String ruleName;
  20. private String toTypeName;
  21. private String communityId;
  22. private String[] ruleIds;
  23. private Date createTime;
  24. private String statusCd = "0";
  25. public String getQuantity() {
  26. return quantity;
  27. }
  28. public void setQuantity(String quantity) {
  29. this.quantity = quantity;
  30. }
  31. public String getCrcId() {
  32. return crcId;
  33. }
  34. public void setCrcId(String crcId) {
  35. this.crcId = crcId;
  36. }
  37. public String getCppId() {
  38. return cppId;
  39. }
  40. public void setCppId(String cppId) {
  41. this.cppId = cppId;
  42. }
  43. public String getRuleId() {
  44. return ruleId;
  45. }
  46. public void setRuleId(String ruleId) {
  47. this.ruleId = ruleId;
  48. }
  49. public String getCommunityId() {
  50. return communityId;
  51. }
  52. public void setCommunityId(String communityId) {
  53. this.communityId = communityId;
  54. }
  55. public Date getCreateTime() {
  56. return createTime;
  57. }
  58. public void setCreateTime(Date createTime) {
  59. this.createTime = createTime;
  60. }
  61. public String getStatusCd() {
  62. return statusCd;
  63. }
  64. public void setStatusCd(String statusCd) {
  65. this.statusCd = statusCd;
  66. }
  67. public String getCouponName() {
  68. return couponName;
  69. }
  70. public void setCouponName(String couponName) {
  71. this.couponName = couponName;
  72. }
  73. public String[] getRuleIds() {
  74. return ruleIds;
  75. }
  76. public void setRuleIds(String[] ruleIds) {
  77. this.ruleIds = ruleIds;
  78. }
  79. public String getRuleName() {
  80. return ruleName;
  81. }
  82. public void setRuleName(String ruleName) {
  83. this.ruleName = ruleName;
  84. }
  85. public String getToTypeName() {
  86. return toTypeName;
  87. }
  88. public void setToTypeName(String toTypeName) {
  89. this.toTypeName = toTypeName;
  90. }
  91. }