GdDistrictBean.java
2.38 KB
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
package com.wd.foundation.bean.response;
import java.util.List;
import com.wd.foundation.bean.base.CommonBean;
/**
* 描述:行政区
*
* @author : lvjinhui
* @since: 2022/8/6
*/
public class GdDistrictBean extends CommonBean {
private static String COUNTRY = "country";
private static String PROVINCE = "province";
private static String CITY = "city";
/**
* 区县
*/
private static String DISTRICT = "district";
/**
* citycode : 0551
* adcode : 340100
* name : 合肥市
* center : 117.227267,31.820567
* level : city
*/
private String parentName;
private String province;
private String cityName;
private String citycode;
private String adcode;
private String name;
private String center;
private String level;
private boolean aloneCity;
private List<GdDistrictBean> districts;
public String getCitycode() {
return citycode;
}
public void setCitycode(String citycode) {
this.citycode = citycode;
}
public String getAdcode() {
return adcode;
}
public void setAdcode(String adcode) {
this.adcode = adcode;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getCenter() {
return center;
}
public void setCenter(String center) {
this.center = center;
}
public String getLevel() {
return level;
}
public void setLevel(String level) {
this.level = level;
}
public List<GdDistrictBean> getDistricts() {
return districts;
}
public void setDistricts(List<GdDistrictBean> districts) {
this.districts = districts;
}
public String getProvince() {
return province;
}
public void setProvince(String province) {
this.province = province;
}
public String getCityName() {
return cityName;
}
public void setCityName(String cityName) {
this.cityName = cityName;
}
public String getParentName() {
return parentName;
}
public void setParentName(String parentName) {
this.parentName = parentName;
}
public boolean isAloneCity() {
return aloneCity;
}
public void setAloneCity(boolean aloneCity) {
this.aloneCity = aloneCity;
}
}