无关风月
2025-04-10 099ea14bba367fd86f0dde37d908f07cc04c3d39
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
package com.ruoyi.system.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "实时租赁数据")
public class RealTimeRentDataVO {
 
    @ApiModelProperty(value = "街道名称")
    private String streetName;
 
    @ApiModelProperty(value = "房间名称")
    private String roomName;
 
    @ApiModelProperty(value = "租赁状态 1=待出租 2=已出租 3=维修中")
    private String leaseStatus;
 
    public RealTimeRentDataVO(String streetName, String roomName, String leaseStatus) {
        this.streetName = streetName;
        this.roomName = roomName;
        this.leaseStatus = leaseStatus;
    }
 
    public RealTimeRentDataVO() {
    }
}