java110
2020-11-23 1880a499b003a82ca3ef02cc708023a74fa400d9
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
package com.java110.po.community;
 
import java.io.Serializable;
 
/**
 * @ClassName CommunityPo
 * @Description TODO
 * @Author wuxw
 * @Date 2020/5/27 14:42
 * @Version 1.0
 * add by wuxw 2020/5/27
 **/
public class CommunityPo implements Serializable {
 
    private String communityId;
    private String name;
    private String address;
    private String nearbyLandmarks;
    private String cityCode;
    private String mapX;
    private String mapY;
    private String state;
 
    private String communityArea;
 
    public String getCommunityId() {
        return communityId;
    }
 
    public void setCommunityId(String communityId) {
        this.communityId = communityId;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getAddress() {
        return address;
    }
 
    public void setAddress(String address) {
        this.address = address;
    }
 
    public String getNearbyLandmarks() {
        return nearbyLandmarks;
    }
 
    public void setNearbyLandmarks(String nearbyLandmarks) {
        this.nearbyLandmarks = nearbyLandmarks;
    }
 
    public String getCityCode() {
        return cityCode;
    }
 
    public void setCityCode(String cityCode) {
        this.cityCode = cityCode;
    }
 
    public String getMapX() {
        return mapX;
    }
 
    public void setMapX(String mapX) {
        this.mapX = mapX;
    }
 
    public String getMapY() {
        return mapY;
    }
 
    public void setMapY(String mapY) {
        this.mapY = mapY;
    }
 
    public String getState() {
        return state;
    }
 
    public void setState(String state) {
        this.state = state;
    }
 
    public String getCommunityArea() {
        return communityArea;
    }
 
    public void setCommunityArea(String communityArea) {
        this.communityArea = communityArea;
    }
}