PointsRulesAndDetailVO.java 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. package com.kmall.admin.haikong.vo;
  2. import com.kmall.admin.dto.Mall2RulesDto;
  3. import com.kmall.admin.entity.vip.Mall2PointsRulesEntity;
  4. import java.math.BigDecimal;
  5. import java.util.Date;
  6. import java.util.List;
  7. /**
  8. * 积分生成规则及其明细
  9. * @author lhm
  10. * @createDate 2021-12-03
  11. */
  12. public class PointsRulesAndDetailVO {
  13. private Integer mprId;
  14. private Integer pointsType;
  15. private Date pointsBeginTime;
  16. private Date pointsEndTime;
  17. private String isValid;
  18. private BigDecimal ratio;
  19. private Integer id;
  20. private Integer fatherId;
  21. private String pointRulesType;
  22. private String pointsDetailName;
  23. private String pointsDetailNameId;
  24. private String pointsStoreName;
  25. private String pointsStoreId;
  26. private String remark;
  27. public Integer getMprId() {
  28. return mprId;
  29. }
  30. public void setMprId(Integer mprId) {
  31. this.mprId = mprId;
  32. }
  33. public Integer getPointsType() {
  34. return pointsType;
  35. }
  36. public void setPointsType(Integer pointsType) {
  37. this.pointsType = pointsType;
  38. }
  39. public Date getPointsBeginTime() {
  40. return pointsBeginTime;
  41. }
  42. public void setPointsBeginTime(Date pointsBeginTime) {
  43. this.pointsBeginTime = pointsBeginTime;
  44. }
  45. public Date getPointsEndTime() {
  46. return pointsEndTime;
  47. }
  48. public void setPointsEndTime(Date pointsEndTime) {
  49. this.pointsEndTime = pointsEndTime;
  50. }
  51. public String getIsValid() {
  52. return isValid;
  53. }
  54. public void setIsValid(String isValid) {
  55. this.isValid = isValid;
  56. }
  57. public BigDecimal getRatio() {
  58. return ratio;
  59. }
  60. public void setRatio(BigDecimal ratio) {
  61. this.ratio = ratio;
  62. }
  63. public Integer getId() {
  64. return id;
  65. }
  66. public void setId(Integer id) {
  67. this.id = id;
  68. }
  69. public Integer getFatherId() {
  70. return fatherId;
  71. }
  72. public void setFatherId(Integer fatherId) {
  73. this.fatherId = fatherId;
  74. }
  75. public String getPointRulesType() {
  76. return pointRulesType;
  77. }
  78. public void setPointRulesType(String pointRulesType) {
  79. this.pointRulesType = pointRulesType;
  80. }
  81. public String getPointsDetailName() {
  82. return pointsDetailName;
  83. }
  84. public void setPointsDetailName(String pointsDetailName) {
  85. this.pointsDetailName = pointsDetailName;
  86. }
  87. public String getPointsDetailNameId() {
  88. return pointsDetailNameId;
  89. }
  90. public void setPointsDetailNameId(String pointsDetailNameId) {
  91. this.pointsDetailNameId = pointsDetailNameId;
  92. }
  93. public String getPointsStoreName() {
  94. return pointsStoreName;
  95. }
  96. public void setPointsStoreName(String pointsStoreName) {
  97. this.pointsStoreName = pointsStoreName;
  98. }
  99. public String getPointsStoreId() {
  100. return pointsStoreId;
  101. }
  102. public void setPointsStoreId(String pointsStoreId) {
  103. this.pointsStoreId = pointsStoreId;
  104. }
  105. public String getRemark() {
  106. return remark;
  107. }
  108. public void setRemark(String remark) {
  109. this.remark = remark;
  110. }
  111. @Override
  112. public String toString() {
  113. return "PointsRulesAndDetailVO{" +
  114. "mprId=" + mprId +
  115. ", pointsType='" + pointsType + '\'' +
  116. ", pointsBeginTime=" + pointsBeginTime +
  117. ", pointsEndTime=" + pointsEndTime +
  118. ", isValid='" + isValid + '\'' +
  119. ", ratio=" + ratio +
  120. ", id=" + id +
  121. ", fatherId=" + fatherId +
  122. ", pointRulesType='" + pointRulesType + '\'' +
  123. ", pointsDetailName='" + pointsDetailName + '\'' +
  124. ", pointsDetailNameId='" + pointsDetailNameId + '\'' +
  125. ", pointsStoreName='" + pointsStoreName + '\'' +
  126. ", pointsStoreId='" + pointsStoreId + '\'' +
  127. ", remark='" + remark + '\'' +
  128. '}';
  129. }
  130. }