package com.ruoyi.system.query;
|
|
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 RentalReturnRecordQuery {
|
/**
|
* 申请开始日期
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@ApiModelProperty(value = "申请开始日期")
|
private LocalDateTime startDate;
|
|
/**
|
* 申请结束日期
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@ApiModelProperty(value = "申请结束日期")
|
private LocalDateTime endDate;
|
|
/**
|
* 房屋名称
|
*/
|
@ApiModelProperty(value = "房屋名称")
|
private String houseName;
|
|
/**
|
* 合同编号
|
*/
|
@ApiModelProperty(value = "合同编号")
|
private String contractNumber;
|
|
/**
|
* 提交人
|
*/
|
@ApiModelProperty(value = "提交人")
|
private String submitter;
|
|
private String businessDeptId;
|
|
private Boolean isAdminDelete;
|
}
|