PayFeeDetailMonthDto.java 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  1. package com.java110.dto.payFee;
  2. import com.java110.dto.PageDto;
  3. import com.java110.dto.fee.FeeAttrDto;
  4. import com.java110.dto.fee.FeeDto;
  5. import java.io.Serializable;
  6. import java.util.Date;
  7. import java.util.List;
  8. /**
  9. * @ClassName FloorDto
  10. * @Description 月缴费表数据层封装
  11. * @Author wuxw
  12. * @Date 2019/4/24 8:52
  13. * @Version 1.0
  14. * add by wuxw 2019/4/24
  15. **/
  16. public class PayFeeDetailMonthDto extends FeeDto implements Serializable {
  17. public static final String STATE_W = "W";//待缴费
  18. public static final String STATE_C = "C";//已缴费
  19. public static final String STATE_R = "R";//已退费
  20. private String detailMonth;
  21. private String detailYear;
  22. private String detailId;
  23. private String receivableAmount;
  24. private String discountAmount;
  25. private String remark;
  26. private String receivedAmount;
  27. private String communityId;
  28. private String feeId;
  29. private String monthId;
  30. private String[] monthIds;
  31. private Date createTime;
  32. private String statusCd = "0";
  33. private String objName;
  34. private String objId;
  35. private String objType;
  36. private String[] objIds;
  37. private String ownerName;
  38. private String ownerId;
  39. private String link;
  40. private String state;
  41. private String feeState;
  42. private String payFeeTime;
  43. private String curMonthTime;
  44. private String feeName;
  45. private String configId;
  46. private List<FeeAttrDto> feeAttrs;
  47. public String getDetailMonth() {
  48. return detailMonth;
  49. }
  50. public void setDetailMonth(String detailMonth) {
  51. this.detailMonth = detailMonth;
  52. }
  53. public String getDetailYear() {
  54. return detailYear;
  55. }
  56. public void setDetailYear(String detailYear) {
  57. this.detailYear = detailYear;
  58. }
  59. public String getDetailId() {
  60. return detailId;
  61. }
  62. public void setDetailId(String detailId) {
  63. this.detailId = detailId;
  64. }
  65. public String getReceivableAmount() {
  66. return receivableAmount;
  67. }
  68. public void setReceivableAmount(String receivableAmount) {
  69. this.receivableAmount = receivableAmount;
  70. }
  71. public String getDiscountAmount() {
  72. return discountAmount;
  73. }
  74. public void setDiscountAmount(String discountAmount) {
  75. this.discountAmount = discountAmount;
  76. }
  77. public String getRemark() {
  78. return remark;
  79. }
  80. public void setRemark(String remark) {
  81. this.remark = remark;
  82. }
  83. public String getReceivedAmount() {
  84. return receivedAmount;
  85. }
  86. public void setReceivedAmount(String receivedAmount) {
  87. this.receivedAmount = receivedAmount;
  88. }
  89. public String getCommunityId() {
  90. return communityId;
  91. }
  92. public void setCommunityId(String communityId) {
  93. this.communityId = communityId;
  94. }
  95. public String getFeeId() {
  96. return feeId;
  97. }
  98. public void setFeeId(String feeId) {
  99. this.feeId = feeId;
  100. }
  101. public String getMonthId() {
  102. return monthId;
  103. }
  104. public void setMonthId(String monthId) {
  105. this.monthId = monthId;
  106. }
  107. public Date getCreateTime() {
  108. return createTime;
  109. }
  110. public void setCreateTime(Date createTime) {
  111. this.createTime = createTime;
  112. }
  113. public String getStatusCd() {
  114. return statusCd;
  115. }
  116. public void setStatusCd(String statusCd) {
  117. this.statusCd = statusCd;
  118. }
  119. public String getObjName() {
  120. return objName;
  121. }
  122. public void setObjName(String objName) {
  123. this.objName = objName;
  124. }
  125. public String getObjId() {
  126. return objId;
  127. }
  128. public void setObjId(String objId) {
  129. this.objId = objId;
  130. }
  131. public String getOwnerName() {
  132. return ownerName;
  133. }
  134. public void setOwnerName(String ownerName) {
  135. this.ownerName = ownerName;
  136. }
  137. public String getOwnerId() {
  138. return ownerId;
  139. }
  140. public void setOwnerId(String ownerId) {
  141. this.ownerId = ownerId;
  142. }
  143. public String getLink() {
  144. return link;
  145. }
  146. public void setLink(String link) {
  147. this.link = link;
  148. }
  149. public String getState() {
  150. return state;
  151. }
  152. public void setState(String state) {
  153. this.state = state;
  154. }
  155. public String getPayFeeTime() {
  156. return payFeeTime;
  157. }
  158. public void setPayFeeTime(String payFeeTime) {
  159. this.payFeeTime = payFeeTime;
  160. }
  161. public String getCurMonthTime() {
  162. return curMonthTime;
  163. }
  164. public void setCurMonthTime(String curMonthTime) {
  165. this.curMonthTime = curMonthTime;
  166. }
  167. public String getFeeName() {
  168. return feeName;
  169. }
  170. public void setFeeName(String feeName) {
  171. this.feeName = feeName;
  172. }
  173. public String getConfigId() {
  174. return configId;
  175. }
  176. public void setConfigId(String configId) {
  177. this.configId = configId;
  178. }
  179. public String[] getObjIds() {
  180. return objIds;
  181. }
  182. public void setObjIds(String[] objIds) {
  183. this.objIds = objIds;
  184. }
  185. public String getObjType() {
  186. return objType;
  187. }
  188. public void setObjType(String objType) {
  189. this.objType = objType;
  190. }
  191. public List<FeeAttrDto> getFeeAttrs() {
  192. return feeAttrs;
  193. }
  194. public void setFeeAttrs(List<FeeAttrDto> feeAttrs) {
  195. this.feeAttrs = feeAttrs;
  196. }
  197. public String[] getMonthIds() {
  198. return monthIds;
  199. }
  200. public void setMonthIds(String[] monthIds) {
  201. this.monthIds = monthIds;
  202. }
  203. public String getFeeState() {
  204. return feeState;
  205. }
  206. public void setFeeState(String feeState) {
  207. this.feeState = feeState;
  208. }
  209. }