Forecast.java
2.52 KB
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
package com.viontech.model;
import java.util.Date;
public class Forecast {
private String conditionDay;
private String conditionIdDay;
private String conditionIdNight;
private String conditionNight;
private Date predictDate;
private String tempDay;
private String tempNight;
private Date updatetime;
private String windDirDay;
private String windDirNight;
private String windLevelDay;
private String windLevelNight;
public void setConditionDay(String conditionDay) {
this.conditionDay = conditionDay;
}
public String getConditionDay() {
return conditionDay;
}
public void setConditionIdDay(String conditionIdDay) {
this.conditionIdDay = conditionIdDay;
}
public String getConditionIdDay() {
return conditionIdDay;
}
public void setConditionIdNight(String conditionIdNight) {
this.conditionIdNight = conditionIdNight;
}
public String getConditionIdNight() {
return conditionIdNight;
}
public void setConditionNight(String conditionNight) {
this.conditionNight = conditionNight;
}
public String getConditionNight() {
return conditionNight;
}
public void setPredictDate(Date predictDate) {
this.predictDate = predictDate;
}
public Date getPredictDate() {
return predictDate;
}
public void setTempDay(String tempDay) {
this.tempDay = tempDay;
}
public String getTempDay() {
return tempDay;
}
public void setTempNight(String tempNight) {
this.tempNight = tempNight;
}
public String getTempNight() {
return tempNight;
}
public void setUpdatetime(Date updatetime) {
this.updatetime = updatetime;
}
public Date getUpdatetime() {
return updatetime;
}
public void setWindDirDay(String windDirDay) {
this.windDirDay = windDirDay;
}
public String getWindDirDay() {
return windDirDay;
}
public void setWindDirNight(String windDirNight) {
this.windDirNight = windDirNight;
}
public String getWindDirNight() {
return windDirNight;
}
public void setWindLevelDay(String windLevelDay) {
this.windLevelDay = windLevelDay;
}
public String getWindLevelDay() {
return windLevelDay;
}
public void setWindLevelNight(String windLevelNight) {
this.windLevelNight = windLevelNight;
}
public String getWindLevelNight() {
return windLevelNight;
}
}