无关风月
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
29
30
31
32
33
34
35
package com.ruoyi.system.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
@ApiModel("房屋分布")
public class HouseMapDistributionVO {
    @ApiModelProperty(value = "房屋名称")
    private String houseName;
 
    @ApiModelProperty(value = "房屋地址")
    private String houseAddress;
 
    @ApiModelProperty(value = "房屋状态 1=待出租 2=已出租 3=维修中 4=欠费")
    private String houseStatus;
 
    @ApiModelProperty(value = "租户")
    private String tenant;
 
    @ApiModelProperty(value = "租金状态")
    private String rentStatus;
 
    @ApiModelProperty(value = "本季租金")
    private String rent;
 
    @ApiModelProperty(value = "经度")
    private BigDecimal longitude;
 
    @ApiModelProperty(value = "纬度")
    private BigDecimal latitude;
}