ParkingCouponCarDto.java 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. package com.java110.dto.parkingCouponCar;
  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 ParkingCouponCarDto extends PageDto implements Serializable {
  14. private String giveWay;
  15. private String carNum;
  16. private String carNumLike;
  17. private String couponShopId;
  18. private String remark;
  19. private String couponId;
  20. private String couponName;
  21. private String pccId;
  22. private String typeCd;
  23. private String typeCdName;
  24. private String paId;
  25. private String paName;
  26. private String startTime;
  27. private String shopId;
  28. private String shopName;
  29. private String shopNameLike;
  30. private String state;
  31. private String stateName;
  32. private String endTime;
  33. private String communityId;
  34. private String value;
  35. private Date createTime;
  36. private String statusCd = "0";
  37. public String getGiveWay() {
  38. return giveWay;
  39. }
  40. public void setGiveWay(String giveWay) {
  41. this.giveWay = giveWay;
  42. }
  43. public String getCarNum() {
  44. return carNum;
  45. }
  46. public void setCarNum(String carNum) {
  47. this.carNum = carNum;
  48. }
  49. public String getCouponShopId() {
  50. return couponShopId;
  51. }
  52. public void setCouponShopId(String couponShopId) {
  53. this.couponShopId = couponShopId;
  54. }
  55. public String getRemark() {
  56. return remark;
  57. }
  58. public void setRemark(String remark) {
  59. this.remark = remark;
  60. }
  61. public String getCouponId() {
  62. return couponId;
  63. }
  64. public void setCouponId(String couponId) {
  65. this.couponId = couponId;
  66. }
  67. public String getPccId() {
  68. return pccId;
  69. }
  70. public void setPccId(String pccId) {
  71. this.pccId = pccId;
  72. }
  73. public String getTypeCd() {
  74. return typeCd;
  75. }
  76. public void setTypeCd(String typeCd) {
  77. this.typeCd = typeCd;
  78. }
  79. public String getPaId() {
  80. return paId;
  81. }
  82. public void setPaId(String paId) {
  83. this.paId = paId;
  84. }
  85. public String getStartTime() {
  86. return startTime;
  87. }
  88. public void setStartTime(String startTime) {
  89. this.startTime = startTime;
  90. }
  91. public String getShopId() {
  92. return shopId;
  93. }
  94. public void setShopId(String shopId) {
  95. this.shopId = shopId;
  96. }
  97. public String getState() {
  98. return state;
  99. }
  100. public void setState(String state) {
  101. this.state = state;
  102. }
  103. public String getEndTime() {
  104. return endTime;
  105. }
  106. public void setEndTime(String endTime) {
  107. this.endTime = endTime;
  108. }
  109. public String getCommunityId() {
  110. return communityId;
  111. }
  112. public void setCommunityId(String communityId) {
  113. this.communityId = communityId;
  114. }
  115. public String getValue() {
  116. return value;
  117. }
  118. public void setValue(String value) {
  119. this.value = value;
  120. }
  121. public Date getCreateTime() {
  122. return createTime;
  123. }
  124. public void setCreateTime(Date createTime) {
  125. this.createTime = createTime;
  126. }
  127. public String getStatusCd() {
  128. return statusCd;
  129. }
  130. public void setStatusCd(String statusCd) {
  131. this.statusCd = statusCd;
  132. }
  133. public String getTypeCdName() {
  134. return typeCdName;
  135. }
  136. public void setTypeCdName(String typeCdName) {
  137. this.typeCdName = typeCdName;
  138. }
  139. public String getPaName() {
  140. return paName;
  141. }
  142. public void setPaName(String paName) {
  143. this.paName = paName;
  144. }
  145. public String getShopName() {
  146. return shopName;
  147. }
  148. public void setShopName(String shopName) {
  149. this.shopName = shopName;
  150. }
  151. public String getStateName() {
  152. return stateName;
  153. }
  154. public void setStateName(String stateName) {
  155. this.stateName = stateName;
  156. }
  157. public String getCarNumLike() {
  158. return carNumLike;
  159. }
  160. public void setCarNumLike(String carNumLike) {
  161. this.carNumLike = carNumLike;
  162. }
  163. public String getShopNameLike() {
  164. return shopNameLike;
  165. }
  166. public void setShopNameLike(String shopNameLike) {
  167. this.shopNameLike = shopNameLike;
  168. }
  169. public String getCouponName() {
  170. return couponName;
  171. }
  172. public void setCouponName(String couponName) {
  173. this.couponName = couponName;
  174. }
  175. }