SwBillManagementUnpaidDo.java 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. package com.rongwe.zhsw.domain;
  2. import com.baomidou.mybatisplus.annotation.TableName;
  3. import lombok.Data;
  4. import lombok.EqualsAndHashCode;
  5. import lombok.experimental.Accessors;
  6. import java.math.BigDecimal;
  7. import java.util.Date;
  8. import java.io.Serializable;
  9. /**
  10. * 账单管理(按年分表)(预收,未缴)(SwBillManagementUnpaid)实体类
  11. *
  12. * @author makejava
  13. * @since 2025-03-07 16:49:13
  14. */
  15. @Data
  16. @EqualsAndHashCode(callSuper = false)
  17. @Accessors(chain = true)
  18. @TableName("sw_bill_management_unpaid")
  19. public class SwBillManagementUnpaidDo implements Serializable {
  20. private static final long serialVersionUID = -66298835868317923L;
  21. /**
  22. * 主键
  23. */
  24. private String id;
  25. /**
  26. * 租户ID
  27. */
  28. private String tenantid;
  29. /**
  30. * 扩展json格式配置
  31. */
  32. private String roption;
  33. /**
  34. * 是否删除Y/N
  35. */
  36. private String deleted;
  37. /**
  38. * 备注
  39. */
  40. private String remark;
  41. /**
  42. * 创建时间
  43. */
  44. private Date createdate;
  45. /**
  46. * 创建用户ID
  47. */
  48. private String createuserid;
  49. /**
  50. * 修改日期
  51. */
  52. private Date modifydate;
  53. /**
  54. * 修改用户ID
  55. */
  56. private String modifyuserid;
  57. /**
  58. * 创建人
  59. */
  60. private String createusername;
  61. /**
  62. * 修改人
  63. */
  64. private String modifyusername;
  65. /**
  66. * 账单编号
  67. */
  68. private String billnumber;
  69. /**
  70. * 年
  71. */
  72. private Integer year;
  73. /**
  74. * 月
  75. */
  76. private Integer month;
  77. /**
  78. * 小区/村落/街道名称
  79. */
  80. private String villagename;
  81. /**
  82. * 户号
  83. */
  84. private String usernumber;
  85. /**
  86. * 户名
  87. */
  88. private String username;
  89. /**
  90. * 用户类别
  91. */
  92. private String usertype;
  93. /**
  94. * 详细地址
  95. */
  96. private String address;
  97. /**
  98. * 单价(元)
  99. */
  100. private BigDecimal unitprice;
  101. /**
  102. * 当期用水(t)
  103. */
  104. private BigDecimal currentwateruse;
  105. /**
  106. * 减免用水(t)
  107. */
  108. private BigDecimal reducedwateruse;
  109. /**
  110. * 减免费用
  111. (元)
  112. */
  113. private BigDecimal feewaiver;
  114. /**
  115. * 原应缴
  116. (元)
  117. */
  118. private BigDecimal oughttohavepaid;
  119. /**
  120. * 用水类型
  121. */
  122. private String watertype;
  123. /**
  124. * 实际应缴
  125. (元)
  126. */
  127. private BigDecimal actualdue;
  128. /**
  129. * 上次抄表日期
  130. */
  131. private Date lastmeterreadingdate;
  132. /**
  133. * 上次抄表数(t)
  134. */
  135. private BigDecimal lastmeterreading;
  136. /**
  137. * 本次抄表日期
  138. */
  139. private Date thismeterreadingdate;
  140. /**
  141. * 本次抄表数(t)
  142. */
  143. private BigDecimal thismeterreading;
  144. /**
  145. * 状态(预收,未缴,实缴,退款)
  146. */
  147. private String status;
  148. /**
  149. * 缴费记录ID
  150. */
  151. private String paymentrecordid;
  152. /**
  153. * 开票状态
  154. */
  155. private String invoicestatus;
  156. /**
  157. * 票据状态
  158. */
  159. private String billstatus;
  160. /**
  161. * 发票附件
  162. */
  163. private String invoicefiles;
  164. /**
  165. * 滞纳金
  166. */
  167. private BigDecimal latefees;
  168. /**
  169. * 退款金额
  170. */
  171. private BigDecimal refundamount;
  172. /**
  173. * 余额划扣金额
  174. */
  175. private BigDecimal balancedebitamount;
  176. }