燕山石化溯源三维电子沙盘-【后端】-服务
1
13693261870
2023-08-10 bab4adf858317cd6e2763425cb00101ef623d460
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
package com.yssh.entity.xls;
 
/**
 * 月报Excel
 * @author WWW
 * @date 2023-08-08
 */
public class MonthExcel {
    /**
     * 上月
     */
    private String sy;
 
    /**
     * 月环比
     */
    private String yhb;
 
    /**
     * 月同期
     */
    private String ytq;
 
    /**
     * 月同比
     */
    private String ytb;
 
    /**
     * 月环比2
     */
    private String yhb2;
 
    /**
     * 累计
     */
    private String lj;
 
    /**
     * 累计同比
     */
    private String ljtb;
 
    /**
     * 较前一年均值变化幅度
     */
    private String qyn;
 
    /**
     * 受影响因素及原因
     */
    private String ys;
 
    /**
     * 风速
     */
    private String fs;
 
    /**
     * 风向
     */
    private String fx;
 
    /**
     * 温度
     */
    private String wd;
 
    public MonthExcel() {
    }
 
    /**
     * 月报Excel
     *
     * @param sy   上月
     * @param yhb  月环比
     * @param ytq  月同期
     * @param ytb  月同比
     * @param yhb2 月环比2
     * @param lj   累计
     * @param ljtb 累计同比
     * @param qyn  较前一年均值变化幅度
     * @param ys   受影响因素及原因
     * @param fs   风速
     * @param fx   风向
     * @param wd   温度
     */
    public MonthExcel(String sy, String yhb, String ytq, String ytb, String yhb2, String lj, String ljtb, String qyn, String ys, String fs, String fx, String wd) {
        this.sy = sy;
        this.yhb = yhb;
        this.ytq = ytq;
        this.ytb = ytb;
        this.yhb2 = yhb2;
        this.lj = lj;
        this.ljtb = ljtb;
        this.qyn = qyn;
        this.ys = ys;
        this.fs = fs;
        this.fx = fx;
        this.wd = wd;
    }
 
    public String getSy() {
        return sy;
    }
 
    public void setSy(String sy) {
        this.sy = sy;
    }
 
    public String getYhb() {
        return yhb;
    }
 
    public void setYhb(String yhb) {
        this.yhb = yhb;
    }
 
    public String getYtq() {
        return ytq;
    }
 
    public void setYtq(String ytq) {
        this.ytq = ytq;
    }
 
    public String getYtb() {
        return ytb;
    }
 
    public void setYtb(String ytb) {
        this.ytb = ytb;
    }
 
    public String getYhb2() {
        return yhb2;
    }
 
    public void setYhb2(String yhb2) {
        this.yhb2 = yhb2;
    }
 
    public String getLj() {
        return lj;
    }
 
    public void setLj(String lj) {
        this.lj = lj;
    }
 
    public String getLjtb() {
        return ljtb;
    }
 
    public void setLjtb(String ljtb) {
        this.ljtb = ljtb;
    }
 
    public String getQyn() {
        return qyn;
    }
 
    public void setQyn(String qyn) {
        this.qyn = qyn;
    }
 
    public String getYs() {
        return ys;
    }
 
    public void setYs(String ys) {
        this.ys = ys;
    }
 
    public String getFs() {
        return fs;
    }
 
    public void setFs(String fs) {
        this.fs = fs;
    }
 
    public String getFx() {
        return fx;
    }
 
    public void setFx(String fx) {
        this.fx = fx;
    }
 
    public String getWd() {
        return wd;
    }
 
    public void setWd(String wd) {
        this.wd = wd;
    }
}