package com.ruoyi.system.vo;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.time.LocalDateTime;
|
|
@Data
|
@ApiModel("退租记录")
|
public class RentalReturnRecordVO {
|
/**
|
* 退租记录id
|
*/
|
@ApiModelProperty(value = "退租记录id")
|
private String id;
|
|
/**
|
* 提交时间
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@ApiModelProperty(value = "提交时间")
|
private LocalDateTime applicationDate;
|
|
/**
|
* 房屋名称
|
*/
|
@ApiModelProperty(value = "房屋名称")
|
private String houseName;
|
|
/**
|
* 房屋地址
|
*/
|
@ApiModelProperty(value = "房屋地址")
|
private String houseAddress;
|
|
/**
|
* 租赁合同编号
|
*/
|
@ApiModelProperty(value = "租赁合同编号")
|
private String contractNumber;
|
|
/**
|
* 图片
|
*/
|
@ApiModelProperty(value = "图片")
|
private String images;
|
|
/**
|
* 提交人
|
*/
|
@ApiModelProperty(value = "提交人")
|
private String submitter;
|
|
/**
|
* 联系方式
|
*/
|
@ApiModelProperty(value = "联系方式")
|
private String submitterPhone;
|
|
/**
|
* 退租说明
|
*/
|
@ApiModelProperty(value = "退租说明")
|
private String reasonForReturn;
|
|
/**
|
* 验收状态
|
*/
|
@ApiModelProperty(value = "验收状态: 1-待审核 2-审核通过 3-审核驳回")
|
private String auditStatus;
|
|
/**
|
* 提交时间
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@ApiModelProperty(value = "提交时间")
|
private LocalDateTime createTime;
|
|
/**
|
* 审批意见
|
*/
|
@ApiModelProperty(value = "审批意见")
|
private String auditOpinion;
|
|
}
|