| | |
| | | private String contractName; |
| | | |
| | | @ApiModelProperty(value = "开始时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | @TableField("start_time") |
| | | private LocalDateTime startTime; |
| | | |
| | | @ApiModelProperty(value = "结束时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | @TableField("end_time") |
| | | private LocalDateTime endTime; |
| | | @ApiModelProperty(value = "开始计费时间") |
| | |
| | | @ApiModelProperty(value = "房屋名称") |
| | | @TableField(exist = false) |
| | | private String houseName; |
| | | @ApiModelProperty(value = "房屋地址") |
| | | @TableField(exist = false) |
| | | private String houseAddress; |
| | | |
| | | } |