wfy
2021-09-14 cd33651deff9fff7e7d9651b766210771c075190
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
package com.java110.po.floor;
 
import java.io.Serializable;
 
/**
 * @ClassName FloorPo
 * @Description TODO
 * @Author wuxw
 * @Date 2020/5/28 13:09
 * @Version 1.0
 * add by wuxw 2020/5/28
 **/
public class FloorPo implements Serializable {
 
    public static final String FLOOR_ATTR_LARGE = "100201912001";//大厦楼栋 属性
    public static final String FLOOR_ATTR_VALUE = "8008";//大厦楼栋 属性值
 
    private String floorId;
    private String floorNum;
    private String floorArea;
    private String name;
    private String userId;
    private String bId;
    private String remark;
    private String communityId;
    private String statusCd;
 
    public String getFloorId() {
        return floorId;
    }
 
    public void setFloorId(String floorId) {
        this.floorId = floorId;
    }
 
    public String getFloorNum() {
        return floorNum;
    }
 
    public void setFloorNum(String floorNum) {
        this.floorNum = floorNum;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getUserId() {
        return userId;
    }
 
    public void setUserId(String userId) {
        this.userId = userId;
    }
 
    public String getRemark() {
        return remark;
    }
 
    public void setRemark(String remark) {
        this.remark = remark;
    }
 
    public String getCommunityId() {
        return communityId;
    }
 
    public void setCommunityId(String communityId) {
        this.communityId = communityId;
    }
 
    public String getFloorArea() {
        return floorArea;
    }
 
    public void setFloorArea(String floorArea) {
        this.floorArea = floorArea;
    }
 
    public String getStatusCd() {
        return statusCd;
    }
 
    public void setStatusCd(String statusCd) {
        this.statusCd = statusCd;
    }
 
    public String getbId() {
        return bId;
    }
 
    public void setbId(String bId) {
        this.bId = bId;
    }
}