管灌系统巡查员智能手机App
zuoxiao
2025-01-14 5f4c3669ddd8fe27449b04a4b9db12b2ca4b3688
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
package com.dayu.pipirrapp.bean.net;
 
/**
 * author: zuo
 * Date: 2024-01-26
 * Time: 10:23
 * 备注:天气接口返回的实例
 */
public class WeatherResponse {
 
 
    private Result[] results;
 
    private String date;
 
    public String getDate() {
        return date;
    }
 
    public void setDate(String date) {
        this.date = date;
    }
 
    public Result[] getResults() {
        return results;
    }
 
    public void setResults(Result[] value) {
        this.results = value;
    }
 
 
    public class Result {
        public Daily[] daily;  //返回指定days天数的结果
        public String last_update;
        public Location location;
 
        public Daily[] getDaily() {
            return daily;
        }
 
        public void setDaily(Daily[] value) {
            this.daily = value;
        }
 
        public String getLast_update() {
            return last_update;
        }
 
        public void setLast_update(String last_update) {
            this.last_update = last_update;
        }
 
        public Location getLocation() {
            return location;
        }
 
        public void setLocation(Location value) {
            this.location = value;
        }
 
    }
 
    public class Daily {
        private String code_day; //白天天气现象代码
        private String code_night;//晚间天气现象代码
        private String date;//日期(该城市的本地时间)
        private String high;//当天最高温度
        private String humidity; //相对湿度,0~100,单位为百分比
        private String low;//当天最低温度
        private String precip;//降水概率,范围0~1,单位百分比(目前仅支持国外城市)
        private String rainfall; //降水量,单位mm
        private String text_day; //白天天气现象文字
        private String text_night;//晚间天气现象文字
        private String wind_direction;//风向文字
        private String wind_direction_degree;//风向角度,范围0~360
        private String wind_scale;//风力等级
        private String wind_speed;//风速,单位km/h(当unit=c时)、mph(当unit=f时)
 
        public String getCode_day() {
            return code_day;
        }
 
        public void setCode_day(String code_day) {
            this.code_day = code_day;
        }
 
        public String getCode_night() {
            return code_night;
        }
 
        public void setCode_night(String code_night) {
            this.code_night = code_night;
        }
 
        public String getDate() {
            return date;
        }
 
        public void setDate(String date) {
            this.date = date;
        }
 
        public String getHigh() {
            return high;
        }
 
        public void setHigh(String high) {
            this.high = high;
        }
 
        public String getHumidity() {
            return humidity;
        }
 
        public void setHumidity(String humidity) {
            this.humidity = humidity;
        }
 
        public String getLow() {
            return low;
        }
 
        public void setLow(String low) {
            this.low = low;
        }
 
        public String getPrecip() {
            return precip;
        }
 
        public void setPrecip(String precip) {
            this.precip = precip;
        }
 
        public String getRainfall() {
            return rainfall;
        }
 
        public void setRainfall(String rainfall) {
            this.rainfall = rainfall;
        }
 
        public String getText_day() {
            return text_day;
        }
 
        public void setText_day(String text_day) {
            this.text_day = text_day;
        }
 
        public String getText_night() {
            return text_night;
        }
 
        public void setText_night(String text_night) {
            this.text_night = text_night;
        }
 
        public String getWind_direction() {
            return wind_direction;
        }
 
        public void setWind_direction(String wind_direction) {
            this.wind_direction = wind_direction;
        }
 
        public String getWind_direction_degree() {
            return wind_direction_degree;
        }
 
        public void setWind_direction_degree(String wind_direction_degree) {
            this.wind_direction_degree = wind_direction_degree;
        }
 
        public String getWind_scale() {
            return wind_scale;
        }
 
        public void setWind_scale(String wind_scale) {
            this.wind_scale = wind_scale;
        }
 
        public String getWind_speed() {
            return wind_speed;
        }
 
        public void setWind_speed(String wind_speed) {
            this.wind_speed = wind_speed;
        }
    }
 
    public class Location {
        private String country;
        private String id;
        private String name;
        private String path;
        private String timezone;
        private String timezoneOffset;
 
        public String getCountry() {
            return country;
        }
 
        public void setCountry(String value) {
            this.country = value;
        }
 
        public String getid() {
            return id;
        }
 
        public void setid(String value) {
            this.id = value;
        }
 
        public String getName() {
            return name;
        }
 
        public void setName(String value) {
            this.name = value;
        }
 
        public String getPath() {
            return path;
        }
 
        public void setPath(String value) {
            this.path = value;
        }
 
        public String getTimezone() {
            return timezone;
        }
 
        public void setTimezone(String value) {
            this.timezone = value;
        }
 
        public String getTimezoneOffset() {
            return timezoneOffset;
        }
 
        public void setTimezoneOffset(String value) {
            this.timezoneOffset = value;
        }
    }
}