BillOweFeeDto.java 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. package com.java110.dto.fee;
  2. import com.java110.dto.PageDto;
  3. import java.io.Serializable;
  4. /**
  5. * @ClassName BillOweFeeDto
  6. * @Description TODO
  7. * @Author wuxw
  8. * @Date 2020/5/28 17:42
  9. * @Version 1.0
  10. * add by wuxw 2020/5/28
  11. **/
  12. public class BillOweFeeDto extends PageDto implements Serializable {
  13. public static final String STATE_FINISH_FEE = "2000";//已缴费
  14. public static final String STATE_WILL_FEE = "1000";//未缴费
  15. private String oweId;
  16. private String billId;
  17. private String feeId;
  18. private String billAmountOwed;
  19. private String amountOwed;
  20. private String feeEndTime;
  21. private String ownerId;
  22. private String ownerName;
  23. private String ownerTel;
  24. private String payerObjName;
  25. private String payerObjType;
  26. private String communityId;
  27. private String state;
  28. private String createTime;
  29. private String[] ownerIds;
  30. private String deadlineTime;
  31. private String payObjId;
  32. public String getOweId() {
  33. return oweId;
  34. }
  35. public void setOweId(String oweId) {
  36. this.oweId = oweId;
  37. }
  38. public String getBillId() {
  39. return billId;
  40. }
  41. public void setBillId(String billId) {
  42. this.billId = billId;
  43. }
  44. public String getFeeId() {
  45. return feeId;
  46. }
  47. public void setFeeId(String feeId) {
  48. this.feeId = feeId;
  49. }
  50. public String getBillAmountOwed() {
  51. return billAmountOwed;
  52. }
  53. public void setBillAmountOwed(String billAmountOwed) {
  54. this.billAmountOwed = billAmountOwed;
  55. }
  56. public String getAmountOwed() {
  57. return amountOwed;
  58. }
  59. public void setAmountOwed(String amountOwed) {
  60. this.amountOwed = amountOwed;
  61. }
  62. public String getFeeEndTime() {
  63. return feeEndTime;
  64. }
  65. public void setFeeEndTime(String feeEndTime) {
  66. this.feeEndTime = feeEndTime;
  67. }
  68. public String getOwnerId() {
  69. return ownerId;
  70. }
  71. public void setOwnerId(String ownerId) {
  72. this.ownerId = ownerId;
  73. }
  74. public String getOwnerName() {
  75. return ownerName;
  76. }
  77. public void setOwnerName(String ownerName) {
  78. this.ownerName = ownerName;
  79. }
  80. public String getOwnerTel() {
  81. return ownerTel;
  82. }
  83. public void setOwnerTel(String ownerTel) {
  84. this.ownerTel = ownerTel;
  85. }
  86. public String getPayerObjName() {
  87. return payerObjName;
  88. }
  89. public void setPayerObjName(String payerObjName) {
  90. this.payerObjName = payerObjName;
  91. }
  92. public String getPayerObjType() {
  93. return payerObjType;
  94. }
  95. public void setPayerObjType(String payerObjType) {
  96. this.payerObjType = payerObjType;
  97. }
  98. public String getCommunityId() {
  99. return communityId;
  100. }
  101. public void setCommunityId(String communityId) {
  102. this.communityId = communityId;
  103. }
  104. public String getState() {
  105. return state;
  106. }
  107. public void setState(String state) {
  108. this.state = state;
  109. }
  110. public String getCreateTime() {
  111. return createTime;
  112. }
  113. public void setCreateTime(String createTime) {
  114. this.createTime = createTime;
  115. }
  116. public String[] getOwnerIds() {
  117. return ownerIds;
  118. }
  119. public void setOwnerIds(String[] ownerIds) {
  120. this.ownerIds = ownerIds;
  121. }
  122. public String getDeadlineTime() {
  123. return deadlineTime;
  124. }
  125. public void setDeadlineTime(String deadlineTime) {
  126. this.deadlineTime = deadlineTime;
  127. }
  128. public String getPayObjId() {
  129. return payObjId;
  130. }
  131. public void setPayObjId(String payObjId) {
  132. this.payObjId = payObjId;
  133. }
  134. }