DYL0109
2025-04-16 75f043dfa6660716364e66ee0b3cf99f44255686
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
package com.zhitan.comprehensivestatistics.domain;
 
import com.zhitan.common.annotation.Excel;
 
import java.io.Serializable;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.Map;
 
/**
 * 
 * @author sys
 * @date 2020-03-25
 */
public class YearComperhensive implements Serializable {
    private static final long serialVersionUID = 1L;
    private String indexId;
    @Excel(name = "指标名称")
    private String indexName;
    private String value;
    private Date dataTime;
    private String timeType;
    private String unitId;
    @Excel(name = "1月")
    private Double value1;
    @Excel(name = "2月")
    private Double value2;
    @Excel(name = "3月")
    private Double value3;
    @Excel(name = "4月")
    private Double value4;
    @Excel(name = "5月")
    private Double value5;
    @Excel(name = "6月")
    private Double value6;
    @Excel(name = "7月")
    private Double value7;
    @Excel(name = "8月")
    private Double value8;
    @Excel(name = "9月")
    private Double value9;
    @Excel(name = "10月")
    private Double value10;
    @Excel(name = "11月")
    private Double value11;
    @Excel(name = "12月")
    private Double value12;
    private String timeCode;
    private List<Map> tablehead =new ArrayList<>();
    private List<DailyReport> tabledata =new ArrayList<>();
    public String getIndexId() {
        return indexId;
    }
 
    public void setIndexId(String indexId) {
        this.indexId = indexId;
    }
 
    public String getIndexName() {
        return indexName;
    }
 
    public void setIndexName(String indexName) {
        this.indexName = indexName;
    }
    public String getUnitId() {
        return unitId;
    }
 
    public void setUnitId(String unitId) {
        this.unitId = unitId;
    }
    public String getValue() {
        return value;
    }
 
    public void setValue(String value) {
        this.value = value;
    }
 
    public String getTimeType() {
        return timeType;
    }
 
    public void setTimeType(String timeType) {
        this.timeType = timeType;
    }
 
    public Date getDataTime() {
        return dataTime;
    }
 
    public void setDataTime(Date dataTime) {
        this.dataTime = dataTime;
    }
 
    public Double getValue1() {
        return value1;
    }
 
    public void setValue1(Double value1) {
        this.value1 = value1;
    }
 
    public Double getValue2() {
        return value2;
    }
 
    public void setValue2(Double value2) {
        this.value2 = value2;
    }
 
    public Double getValue3() {
        return value3;
    }
 
    public void setValue3(Double value3) {
        this.value3 = value3;
    }
 
    public Double getValue4() {
        return value4;
    }
 
    public void setValue4(Double value4) {
        this.value4 = value4;
    }
 
    public Double getValue5() {
        return value5;
    }
 
    public void setValue5(Double value5) {
        this.value5 = value5;
    }
 
    public Double getValue6() {
        return value6;
    }
 
    public void setValue6(Double value6) {
        this.value6 = value6;
    }
 
    public Double getValue7() {
        return value7;
    }
 
    public void setValue7(Double value7) {
        this.value7 = value7;
    }
 
    public Double getValue8() {
        return value8;
    }
 
    public void setValue8(Double value8) {
        this.value8 = value8;
    }
 
    public Double getValue9() {
        return value9;
    }
 
    public void setValue9(Double value9) {
        this.value9 = value9;
    }
 
    public Double getValue10() {
        return value10;
    }
 
    public void setValue10(Double value10) {
        this.value10 = value10;
    }
 
    public Double getValue11() {
        return value11;
    }
 
    public void setValue11(Double value11) {
        this.value11 = value11;
    }
 
    public Double getValue12() {
        return value12;
    }
 
    public void setValue12(Double value12) {
        this.value12 = value12;
    }
    public String getTimeCode() {
        return timeCode;
    }
 
    public void setTimeCode(String timeCode) {
        this.timeCode = timeCode;
    }
    public List<Map> getTablehead() {
        return tablehead;
    }
 
    public void setTablehead(List<Map> tablehead) {
        this.tablehead = tablehead;
    }
    public List<DailyReport> getTabledata() {
        return tabledata;
    }
 
    public void setTabledata(List<DailyReport> tabledata) {
        this.tabledata = tabledata;
    }
}