123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- package com.rongwe.zhsw.domain;
- import com.baomidou.mybatisplus.annotation.TableName;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- import lombok.experimental.Accessors;
- import java.math.BigDecimal;
- import java.util.Date;
- import java.io.Serializable;
- /**
- * 账单管理(按年分表)(预收,未缴)(SwBillManagementUnpaid)实体类
- *
- * @author makejava
- * @since 2025-03-07 16:49:13
- */
- @Data
- @EqualsAndHashCode(callSuper = false)
- @Accessors(chain = true)
- @TableName("sw_bill_management_unpaid")
- public class SwBillManagementUnpaidDo implements Serializable {
- private static final long serialVersionUID = -66298835868317923L;
- /**
- * 主键
- */
- private String id;
- /**
- * 租户ID
- */
- private String tenantid;
- /**
- * 扩展json格式配置
- */
- private String roption;
- /**
- * 是否删除Y/N
- */
- private String deleted;
- /**
- * 备注
- */
- private String remark;
- /**
- * 创建时间
- */
- private Date createdate;
- /**
- * 创建用户ID
- */
- private String createuserid;
- /**
- * 修改日期
- */
- private Date modifydate;
- /**
- * 修改用户ID
- */
- private String modifyuserid;
- /**
- * 创建人
- */
- private String createusername;
- /**
- * 修改人
- */
- private String modifyusername;
- /**
- * 账单编号
- */
- private String billnumber;
- /**
- * 年
- */
- private Integer year;
- /**
- * 月
- */
- private Integer month;
- /**
- * 小区/村落/街道名称
- */
- private String villagename;
- /**
- * 户号
- */
- private String usernumber;
- /**
- * 户名
- */
- private String username;
- /**
- * 用户类别
- */
- private String usertype;
- /**
- * 详细地址
- */
- private String address;
- /**
- * 单价(元)
- */
- private BigDecimal unitprice;
- /**
- * 当期用水(t)
- */
- private BigDecimal currentwateruse;
- /**
- * 减免用水(t)
- */
- private BigDecimal reducedwateruse;
- /**
- * 减免费用
- (元)
- */
- private BigDecimal feewaiver;
- /**
- * 原应缴
- (元)
- */
- private BigDecimal oughttohavepaid;
- /**
- * 用水类型
- */
- private String watertype;
- /**
- * 实际应缴
- (元)
- */
- private BigDecimal actualdue;
- /**
- * 上次抄表日期
- */
- private Date lastmeterreadingdate;
- /**
- * 上次抄表数(t)
- */
- private BigDecimal lastmeterreading;
- /**
- * 本次抄表日期
- */
- private Date thismeterreadingdate;
- /**
- * 本次抄表数(t)
- */
- private BigDecimal thismeterreading;
- /**
- * 状态(预收,未缴,实缴,退款)
- */
- private String status;
- /**
- * 缴费记录ID
- */
- private String paymentrecordid;
- /**
- * 开票状态
- */
- private String invoicestatus;
- /**
- * 票据状态
- */
- private String billstatus;
- /**
- * 发票附件
- */
- private String invoicefiles;
- /**
- * 滞纳金
- */
- private BigDecimal latefees;
- /**
- * 退款金额
- */
- private BigDecimal refundamount;
- /**
- * 余额划扣金额
- */
- private BigDecimal balancedebitamount;
- }
|