whyclxw
2025-05-28 e16302f9d475c7cc4dd18c5abf1a23cb5502e362
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
package com.whyc.dto.weather;
 
import java.util.List;
 
public class Weather {
    private Integer id;
    /**
     * 实时-聚合和百度共用字段
     */
    private WeatherInfo realtime;
    /**
     * 未来天气-聚合
     */
    private List<WeatherInfo> future;
    /**
     * 未来天气-百度
     */
    private List<WeatherInfo2> future2;
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public WeatherInfo getRealtime() {
        return realtime;
    }
 
    public void setRealtime(WeatherInfo realtime) {
        this.realtime = realtime;
    }
 
    public List<WeatherInfo> getFuture() {
        return future;
    }
 
    public void setFuture(List<WeatherInfo> future) {
        this.future = future;
    }
 
    public List<WeatherInfo2> getFuture2() {
        return future2;
    }
 
    public void setFuture2(List<WeatherInfo2> future2) {
        this.future2 = future2;
    }
}