| | |
| | | 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; |
| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import org.springframework.data.annotation.Transient; |
| | | import springfox.documentation.annotations.ApiIgnore; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | @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") |
| | |
| | | |
| | | @ApiModelProperty(value = "账单类型 1=租金 2=押金 3=生活费用") |
| | | @TableField("bill_type") |
| | | private Integer billType; |
| | | private String billType; |
| | | |
| | | @ApiModelProperty(value = "逾期天数") |
| | | @TableField("over_days") |
| | |
| | | @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") |
| | | private String voucher; |
| | | |
| | | @ApiModelProperty(value = "t_bill_confirm表确认单关联ID") |
| | | @TableField("confirm_id") |
| | | private String confirmId; |
| | | |
| | | /** |
| | | * 抵扣金额 |
| | | */ |
| | | @TableField(exist = false) |
| | | private BigDecimal deductionMoney; |
| | | /** |
| | | * 抵扣前欠费金额 |
| | | */ |
| | | @TableField(exist = false) |
| | | private BigDecimal preOutstand; |
| | | |
| | | } |