package com.doumee.dao.business.vo;
|
|
import com.doumee.core.annotation.excel.ExcelColumn;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
/**
|
* Created by IntelliJ IDEA.
|
*
|
* @Author : Rk
|
* @create 2025/1/8 15:32
|
*/
|
@Data
|
public class YwRoomStatusDataVO {
|
|
@ApiModelProperty(value = "楼层主键", example = "1")
|
private Integer floorId;
|
|
@ApiModelProperty(value = "房间主键", example = "1")
|
private Integer roomId;
|
|
@ApiModelProperty(value = "房间编号", example = "1")
|
private String roomCode;
|
|
@ApiModelProperty(value = "计租面积(平方米)", example = "1")
|
private BigDecimal roomRentArea;
|
|
@ApiModelProperty(value = "租客名称", example = "1")
|
private String customerName;
|
|
@ApiModelProperty(value = "房间状态:0=待租;1=已租;2=即将到期", example = "1")
|
private Integer roomStatus;
|
|
@ApiModelProperty(value = "到期日期", example = "1")
|
private Date overData;
|
|
@ApiModelProperty(value = "空闲天数", example = "1")
|
private Integer freeDayAmount;
|
|
}
|