mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package com.panzhihua.common.model.vos.community;
 
import java.util.Date;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * 实有房屋Vo
 */
@Data
@ApiModel("实有房屋")
public class ComMngPopulationHouseAdminVO {
 
    /**
     * 实有房屋id
     */
    @ApiModelProperty("实有房屋id")
    @JsonSerialize(using = ToStringSerializer.class)
    private Long id;
    /**
     * 房屋地址
     */
    @ApiModelProperty("房屋地址")
    private String address;
    /**
     * 街/路/巷
     */
    @ApiModelProperty("街/路/巷")
    private String alley;
    /**
     * 门牌号
     */
    @ApiModelProperty("门牌号")
    private String houseNum;
    /**
     * 小区/组
     */
    @ApiModelProperty("小区/组")
    private String groupAt;
 
    @ApiModelProperty("房屋状态(1.自住 2.租住 3.其他)")
    private Integer status;
 
    @ApiModelProperty("房屋用途(1.住宅 2.公寓 3.宿舍 4.仓库 5.其他)")
    private Integer purpose;
 
    @ApiModelProperty("管控状态(1.常规 2.关注 3.管控)")
    private Integer controlStatus;
 
    @ApiModelProperty("空户(1.是 2.否)")
    private Integer isEmpty;
 
    @ApiModelProperty("更新时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date updateAt;
 
}