zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
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
package cn.autoform.bean;
 
import java.io.Serializable;
 
public class City implements Serializable{
    /**
     * 
     */
    private static final long serialVersionUID = -6583875162117059297L;
 
    private Integer id = null;
 
    private String name = "";
 
    private String countryCode = "";
    private String district = "";
    private Integer population = null;
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getCountryCode() {
        return countryCode;
    }
 
    public void setCountryCode(String countryCode) {
        this.countryCode = countryCode;
    }
 
    public String getDistrict() {
        return district;
    }
 
    public void setDistrict(String district) {
        this.district = district;
    }
 
    public Integer getPopulation() {
        return population;
    }
 
    public void setPopulation(Integer population) {
        this.population = population;
    }
 
}