puzhibing
2023-06-30 f58cca364b731eac2d60a440ffaa804be3cd43fd
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
package com.stylefeng.guns.modular.system.util.GaoDe.model;
 
 
/**
* 行政区域
* @author pzb
* @Date 2023/2/25 11:40
*/
public class District {
    /**
     * 省名称
     */
    private String province;
    /**
     * 省编号
     */
    private String provinceCode;
    /**
     * 市名称
     */
    private String city;
    /**
     * 市编号
     */
    private String cityCode;
    /**
     * 区县名称
     */
    private String district;
    /**
     * 区县编号
     */
    private String districtCode;
 
 
    public String getProvince() {
        return province;
    }
 
    public void setProvince(String province) {
        this.province = province;
    }
 
    public String getProvinceCode() {
        return provinceCode;
    }
 
    public void setProvinceCode(String provinceCode) {
        this.provinceCode = provinceCode;
    }
 
    public String getCity() {
        return city;
    }
 
    public void setCity(String city) {
        this.city = city;
    }
 
    public String getCityCode() {
        return cityCode;
    }
 
    public void setCityCode(String cityCode) {
        this.cityCode = cityCode;
    }
 
    public String getDistrict() {
        return district;
    }
 
    public void setDistrict(String district) {
        this.district = district;
    }
 
    public String getDistrictCode() {
        return districtCode;
    }
 
    public void setDistrictCode(String districtCode) {
        this.districtCode = districtCode;
    }
}