From 0c97e8cf0e044e63668be6d0c7cf7402a16c86b1 Mon Sep 17 00:00:00 2001
From: 无关风月 <443237572@qq.com>
Date: 星期五, 07 三月 2025 11:53:11 +0800
Subject: [PATCH] Merge branch 'master' of https://gitee.com/xiaochen991015/xizang

---
 ruoyi-system/src/main/java/com/ruoyi/system/model/TBill.java |   63 ++++++++++++++++++++++++++++---
 1 files changed, 56 insertions(+), 7 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 a298bb2..42b77b4 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
@@ -5,9 +5,12 @@
 import com.baomidou.mybatisplus.annotation.TableId;
 
 import java.math.BigDecimal;
+import java.time.LocalDate;
 import java.time.LocalDateTime;
 import com.baomidou.mybatisplus.annotation.TableField;
 import java.io.Serializable;
+import java.util.Date;
+import java.util.List;
 
 import com.fasterxml.jackson.annotation.JsonFormat;
 import com.ruoyi.common.core.domain.BaseModel;
@@ -16,6 +19,8 @@
 import io.swagger.annotations.ApiModelProperty;
 import lombok.Data;
 import lombok.EqualsAndHashCode;
+import org.springframework.data.annotation.Transient;
+import springfox.documentation.annotations.ApiIgnore;
 
 /**
  * <p>
@@ -49,20 +54,20 @@
     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;
+    private LocalDate 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")
     private BigDecimal payFeesMoney;
 
     @ApiModelProperty(value = "缴费日期")
-    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
+    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
     @TableField("pay_fees_time")
     private LocalDateTime payFeesTime;
 
@@ -70,9 +75,9 @@
     @TableField("pay_fees_type")
     private Integer payFeesType;
 
-    @ApiModelProperty(value = "账单类型 1=租金 2=押金 3=生活费用")
+    @ApiModelProperty(value = "账单类型 1=租金 2=押金 3=生活费用 4=房屋验收")
     @TableField("bill_type")
-    private Integer billType;
+    private String billType;
 
     @ApiModelProperty(value = "逾期天数")
     @TableField("over_days")
@@ -104,5 +109,49 @@
     @TableField("voucher")
     private String voucher;
 
+    @ApiModelProperty(value = "t_bill_confirm表确认单关联ID")
+    @TableField("confirm_id")
+    private String confirmId;
+
+    @ApiModelProperty(value = "短信发送状态:0.未发送  1.已发送  2.发送失败")
+    @TableField("sms_status")
+    private Integer smsStatus;
+
+    @ApiModelProperty(value = "短信最后发送时间")
+    @TableField("sms_last_time")
+    private Date smsLastTime;
+
+    @ApiModelProperty(value = "最后短信发送人")
+    @TableField("sms_send_userid")
+    private String smsSendUserid;
+
+
+    @ApiModelProperty(value = "邮件发送状态:0.未发送  1.已发送  2.发送失败")
+    @TableField("mail_status")
+    private Integer mailStatus;
+
+    @ApiModelProperty(value = "邮件最后发送时间")
+    @TableField("mail_last_time")
+    private Date mailLastTime;
+
+    @ApiModelProperty(value = "最后邮件发送人")
+    @TableField("mail_send_userid")
+    private String mailSendUserid;
+
+    /**
+     * 抵扣金额
+     */
+    @TableField(exist = false)
+    private BigDecimal deductionMoney;
+    /**
+     * 抵扣前欠费金额
+     */
+    @TableField(exist = false)
+    private BigDecimal preOutstand;
+
+
+
+
+
 
 }

--
Gitblit v1.7.1