| | |
| | | @ApiModelProperty(value = "押金") |
| | | @TableField("deposit") |
| | | private BigDecimal deposit; |
| | | @ApiModelProperty(value = "变动后递增或递减之后的每月租金 前端忽略") |
| | | @TableField("change_rent") |
| | | private BigDecimal changeRent; |
| | | |
| | | @ApiModelProperty(value = "租金支付方式 月付 季付 年付") |
| | | @TableField("pay_type") |
| | |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @TableField("first_pay_time") |
| | | private LocalDateTime firstPayTime; |
| | | @ApiModelProperty(value = "变动时间 根据周期改变 前端忽略") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @TableField("change_time") |
| | | private LocalDateTime changeTime; |
| | | |
| | | @ApiModelProperty(value = "是否递增递减 true=是 false=否") |
| | | @TableField("isIncreasing") |
| | |
| | | |
| | | @ApiModelProperty(value = "押金是否随租金递增递减 true=是 false=否") |
| | | @TableField("isIncreasing_deposit") |
| | | private Boolean isincreasingDeposit; |
| | | private Boolean isIncreasingDeposit; |
| | | |
| | | @ApiModelProperty(value = "违约金比例") |
| | | @TableField("proportion") |