xuhy
2025-02-10 078ce36a32bc6679f32e42fd18a9cbb454ff7b7d
ruoyi-system/src/main/java/com/ruoyi/system/model/TBill.java
@@ -40,18 +40,22 @@
    @TableField("contract_id")
    private String contractId;
    @ApiModelProperty(value = "合同编号")
    @TableField("contract_number")
    private String contractNumber;
    @ApiModelProperty(value = "应缴费")
    @TableField("payable_fees_money")
    private BigDecimal payableFeesMoney;
    @ApiModelProperty(value = "应缴费日期")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    @TableField("payable_fees_time")
    private LocalDateTime payableFeesTime;
    @ApiModelProperty(value = "缴费状态 1=未缴费 2=待确认 3=已缴费 4=已逾期")
    @ApiModelProperty(value = "缴费状态 1=未缴费 2=待确认 3=已缴费 4=已逾期 5= 已失效")
    @TableField("pay_fees_status")
    private Integer payFeesStatus;
    private String payFeesStatus;
    @ApiModelProperty(value = "缴费金额")
    @TableField("pay_fees_money")
@@ -68,7 +72,7 @@
    @ApiModelProperty(value = "账单类型 1=租金 2=押金 3=生活费用")
    @TableField("bill_type")
    private Integer billType;
    private String billType;
    @ApiModelProperty(value = "逾期天数")
    @TableField("over_days")
@@ -92,9 +96,9 @@
    @TableField("bank_serial_number")
    private String bankSerialNumber;
    @ApiModelProperty(value = "实际收款")
    @TableField("actual_money")
    private BigDecimal actualMoney;
    @ApiModelProperty(value = "欠费金额")
    @TableField("outstanding_money")
    private BigDecimal outstandingMoney;
    @ApiModelProperty(value = "凭证上传")
    @TableField("voucher")