CouponPropertyUserDetailDto.java 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. package com.java110.dto.couponPropertyUserDetail;
  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 CouponPropertyUserDetailDto extends PageDto implements Serializable {
  14. private String detailType;
  15. private String couponName;
  16. private String uoId;
  17. private String businessKey;
  18. private String remark;
  19. private String couponId;
  20. private String communityId;
  21. private String userName;
  22. private String tel;
  23. private String value;
  24. private Date createTime;
  25. private String statusCd = "0";
  26. public String getDetailType() {
  27. return detailType;
  28. }
  29. public void setDetailType(String detailType) {
  30. this.detailType = detailType;
  31. }
  32. public String getCouponName() {
  33. return couponName;
  34. }
  35. public void setCouponName(String couponName) {
  36. this.couponName = couponName;
  37. }
  38. public String getUoId() {
  39. return uoId;
  40. }
  41. public void setUoId(String uoId) {
  42. this.uoId = uoId;
  43. }
  44. public String getBusinessKey() {
  45. return businessKey;
  46. }
  47. public void setBusinessKey(String businessKey) {
  48. this.businessKey = businessKey;
  49. }
  50. public String getRemark() {
  51. return remark;
  52. }
  53. public void setRemark(String remark) {
  54. this.remark = remark;
  55. }
  56. public String getCouponId() {
  57. return couponId;
  58. }
  59. public void setCouponId(String couponId) {
  60. this.couponId = couponId;
  61. }
  62. public String getCommunityId() {
  63. return communityId;
  64. }
  65. public void setCommunityId(String communityId) {
  66. this.communityId = communityId;
  67. }
  68. public Date getCreateTime() {
  69. return createTime;
  70. }
  71. public void setCreateTime(Date createTime) {
  72. this.createTime = createTime;
  73. }
  74. public String getStatusCd() {
  75. return statusCd;
  76. }
  77. public void setStatusCd(String statusCd) {
  78. this.statusCd = statusCd;
  79. }
  80. public String getUserName() {
  81. return userName;
  82. }
  83. public void setUserName(String userName) {
  84. this.userName = userName;
  85. }
  86. public String getTel() {
  87. return tel;
  88. }
  89. public void setTel(String tel) {
  90. this.tel = tel;
  91. }
  92. public String getValue() {
  93. return value;
  94. }
  95. public void setValue(String value) {
  96. this.value = value;
  97. }
  98. }