riku
2025-10-17 fbae5f3ea74727ccadc48314a864a1ea0099a945
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
package cn.flightfeather.thirdappmodule.bean.vo;
 
 
public class AreaVo {
 
    private String provincecode;
    private String provincename;
    private String citycode;
    private String cityname;
    private String districtcode;
    private String districtname;
    private String towncode;
    private String townname;
    private String starttime;
    private String endtime;
    private String scensetypeid;
    private int notstandardnum;
    private int allsensenum;
 
    public String getProvincecode() {
        return provincecode;
    }
 
    public void setProvincecode(String provincecode) {
        this.provincecode = provincecode;
    }
 
    public String getProvincename() {
        return provincename;
    }
 
    public void setProvincename(String provincename) {
        this.provincename = provincename;
    }
 
    public String getCitycode() {
        return citycode;
    }
 
    public void setCitycode(String citycode) {
        this.citycode = citycode;
    }
 
    public String getCityname() {
        return cityname;
    }
 
    public void setCityname(String cityname) {
        this.cityname = cityname;
    }
 
    public String getDistrictcode() {
        return districtcode;
    }
 
    public void setDistrictcode(String districtcode) {
        this.districtcode = districtcode;
    }
 
    public String getDistrictname() {
        return districtname;
    }
 
    public void setDistrictname(String districtname) {
        this.districtname = districtname;
    }
 
    public String getTowncode() {
        return towncode;
    }
 
    public void setTowncode(String towncode) {
        this.towncode = towncode;
    }
 
    public String getTownname() {
        return townname;
    }
 
    public void setTownname(String townname) {
        this.townname = townname;
    }
 
    public String getStarttime() {
        return starttime;
    }
 
    public void setStarttime(String starttime) {
        this.starttime = starttime;
    }
 
    public String getEndtime() {
        return endtime;
    }
 
    public void setEndtime(String endtime) {
        this.endtime = endtime;
    }
 
    public String getScensetypeid() {
        return scensetypeid;
    }
 
    public void setScensetypeid(String scensetypeid) {
        this.scensetypeid = scensetypeid;
    }
 
    public int getNotstandardnum() {
        return notstandardnum;
    }
 
    public void setNotstandardnum(int notstandardnum) {
        this.notstandardnum = notstandardnum;
    }
 
    public int getAllsensenum() {
        return allsensenum;
    }
 
    public void setAllsensenum(int allsensenum) {
        this.allsensenum = allsensenum;
    }
}