MrShi
2025-01-10 363208403f2076fef350a7feaf236e6153f982be
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package com.doumee.dao.business.vo;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.List;
 
/**
 * Created by IntelliJ IDEA.
 *
 * @Author : Rk
 * @create 2025/1/8 15:32
 */
@Data
public class YwFloorStatusDataVO {
 
    @ApiModelProperty(value = "楼层主键", example = "1")
    private Integer floorId;
 
    @ApiModelProperty(value = "楼层面积", example = "1")
    private BigDecimal floorArea;
 
    @ApiModelProperty(value = "楼层名称", example = "1")
    private String floorName;
 
    @ApiModelProperty(value = "楼层数", example = "1")
    private Integer floor;
 
    @ApiModelProperty(value = "房间状态数据", example = "1")
    private List<YwRoomStatusDataVO> ywRoomStatusDataVOList;
 
 
}