From da124bc60214876ec2b00d00d865b14cf9bb9535 Mon Sep 17 00:00:00 2001 From: 无关风月 <443237572@qq.com> Date: 星期三, 12 二月 2025 09:48:31 +0800 Subject: [PATCH] Merge branch 'master' of https://gitee.com/xiaochen991015/xizang --- ruoyi-system/src/main/java/com/ruoyi/system/model/TBill.java | 22 ++++++++++++++-------- 1 files changed, 14 insertions(+), 8 deletions(-) diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/model/TBill.java b/ruoyi-system/src/main/java/com/ruoyi/system/model/TBill.java index c75228c..bb355e1 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/model/TBill.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/model/TBill.java @@ -8,6 +8,7 @@ import java.time.LocalDateTime; import com.baomidou.mybatisplus.annotation.TableField; import java.io.Serializable; +import java.util.List; import com.fasterxml.jackson.annotation.JsonFormat; import com.ruoyi.common.core.domain.BaseModel; @@ -16,6 +17,7 @@ import io.swagger.annotations.ApiModelProperty; import lombok.Data; import lombok.EqualsAndHashCode; +import org.springframework.data.annotation.Transient; /** * <p> @@ -40,18 +42,22 @@ @TableField("contract_id") private String contractId; + @ApiModelProperty(value = "合同编号") + @TableField("contract_number") + private String contractNumber; + @ApiModelProperty(value = "应缴费") @TableField("payable_fees_money") - private Double payableFeesMoney; + 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 +74,7 @@ @ApiModelProperty(value = "账单类型 1=租金 2=押金 3=生活费用") @TableField("bill_type") - private Integer billType; + private String billType; @ApiModelProperty(value = "逾期天数") @TableField("over_days") @@ -92,9 +98,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") -- Gitblit v1.7.1