DataCountDay.java
6.9 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
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
package com.skua.modules.threedimensional.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
import org.jeecgframework.poi.excel.annotation.Excel;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
/**
* 日数据
*/
@Data
@TableName("data_count_day")
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@ApiModel(value="data_count_day对象", description="日数据")
public class DataCountDay {
/**主键*/
@TableId(type = IdType.ID_WORKER_STR)
@ApiModelProperty(value = "主键")
private String id;
/**厂站编码*/
@Excel(name = "厂站编码", width = 15)
@ApiModelProperty(value = "厂站编码")
private String departId;
/**出水流量*/
@Excel(name = "出水流量", width = 15)
@ApiModelProperty(value = "出水流量")
private String csll;
/**进水流量*/
@Excel(name = "进水流量", width = 15)
@ApiModelProperty(value = "进水流量")
private String jsll;
/**进水COD*/
@Excel(name = "进水COD", width = 15)
@ApiModelProperty(value = "进水COD")
private String jscod;
/**进水氨氮*/
@Excel(name = "进水氨氮", width = 15)
@ApiModelProperty(value = "进水氨氮")
private String jsnh3n;
/**进水PH*/
@Excel(name = "进水PH", width = 15)
@ApiModelProperty(value = "进水PH")
private String jsph;
/**进水SS*/
@Excel(name = "进水SS", width = 15)
@ApiModelProperty(value = "进水SS")
private String jsss;
/**进水TN*/
@Excel(name = "进水TN", width = 15)
@ApiModelProperty(value = "进水TN")
private String jstn;
/**进水TP*/
@Excel(name = "进水TP", width = 15)
@ApiModelProperty(value = "进水TP")
private String jstp;
/**进水BOD*/
@Excel(name = "进水BOD", width = 15)
@ApiModelProperty(value = "进水BOD")
private String jsbod;
/**出水COD*/
@Excel(name = "出水COD", width = 15)
@ApiModelProperty(value = "出水COD")
private String cscod;
/**出水氨氮*/
@Excel(name = "出水氨氮", width = 15)
@ApiModelProperty(value = "出水氨氮")
private String csnh3n;
/**出水PH*/
@Excel(name = "出水PH", width = 15)
@ApiModelProperty(value = "出水PH")
private String csph;
/**出水SS*/
@Excel(name = "出水SS", width = 15)
@ApiModelProperty(value = "出水SS")
private String csss;
/**出水TN*/
@Excel(name = "出水TN", width = 15)
@ApiModelProperty(value = "出水TN")
private String cstn;
/**出水TP*/
@Excel(name = "出水TP", width = 15)
@ApiModelProperty(value = "出水TP")
private String cstp;
/**出水BOD*/
@Excel(name = "出水BOD", width = 15)
@ApiModelProperty(value = "出水BOD")
private String csbod;
/**出水达标率*/
@Excel(name = "出水达标率", width = 15)
@ApiModelProperty(value = "出水达标率")
private String csdbl;
/**达标项*/
@Excel(name = "达标项", width = 15)
@ApiModelProperty(value = "达标项")
private String dbzbx;
/**未达标项*/
@Excel(name = "未达标项", width = 15)
@ApiModelProperty(value = "未达标项")
private String wdbzbx;
/**设备运行率*/
@Excel(name = "设备运行率", width = 15)
@ApiModelProperty(value = "设备运行率")
private String sbyxl;
/**设备故障率*/
@Excel(name = "设备故障率", width = 15)
@ApiModelProperty(value = "设备故障率")
private String sbgzl;
/**COD消减量*/
@Excel(name = "COD消减量", width = 15)
@ApiModelProperty(value = "COD消减量")
private String codxjl;
/**氨氮消减量*/
@Excel(name = "氨氮消减量", width = 15)
@ApiModelProperty(value = "氨氮消减量")
private String nh3nxjl;
/**TN消减量*/
@Excel(name = "TN消减量", width = 15)
@ApiModelProperty(value = "TN消减量")
private String tnxjl;
/**TP消减量*/
@Excel(name = "TP消减量", width = 15)
@ApiModelProperty(value = "TP消减量")
private String tpxjl;
/**COD消减率*/
@Excel(name = "COD消减率", width = 15)
@ApiModelProperty(value = "COD消减率")
private String codxjlv;
/**氨氮消减率*/
@Excel(name = "氨氮消减率", width = 15)
@ApiModelProperty(value = "氨氮消减率")
private String nh3nxjlv;
/**TN消减率*/
@Excel(name = "TN消减率", width = 15)
@ApiModelProperty(value = "TN消减率")
private String tnxjlv;
/**TP消减率*/
@Excel(name = "TP消减率", width = 15)
@ApiModelProperty(value = "TP消减率")
private String tpxjlv;
/**水力负荷率*/
@Excel(name = "水力负荷率", width = 15)
@ApiModelProperty(value = "水力负荷率")
private String slfhl;
/**用电量*/
@Excel(name = "用电量", width = 15)
@ApiModelProperty(value = "用电量")
private String ydl;
/**吨水电耗*/
@Excel(name = "吨水电耗", width = 15)
@ApiModelProperty(value = "吨水电耗")
private String dsdh;
/**产泥量*/
@Excel(name = "产泥量", width = 15)
@ApiModelProperty(value = "产泥量")
private String cnl;
/**吨水产泥量*/
@Excel(name = "吨水产泥量", width = 15)
@ApiModelProperty(value = "吨水产泥量")
private String dscnl;
/**含水率*/
@Excel(name = "含水率", width = 15)
@ApiModelProperty(value = "含水率")
private String hsl;
/**备用字段1*/
@Excel(name = "备用字段1", width = 15)
@ApiModelProperty(value = "备用字段1")
private String attr1;
/**备用字段2*/
@Excel(name = "备用字段2", width = 15)
@ApiModelProperty(value = "备用字段2")
private String attr2;
/**备用字段3*/
@Excel(name = "备用字段3", width = 15)
@ApiModelProperty(value = "备用字段3")
private String attr3;
/**备用字段4*/
@Excel(name = "备用字段4", width = 15)
@ApiModelProperty(value = "备用字段4")
private String attr4;
/**备用字段5*/
@Excel(name = "备用字段5", width = 15)
@ApiModelProperty(value = "备用字段5")
private String attr5;
/**计算日期*/
@Excel(name = "计算日期", width = 15)
@ApiModelProperty(value = "计算日期")
private String dayDate;
/**创建时间*/
@Excel(name = "创建时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
@ApiModelProperty(value = "创建时间")
private Date createTime;
/**修改时间*/
@Excel(name = "修改时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
@ApiModelProperty(value = "修改时间")
private Date updateTime;
/**删除标识(0:删除,1:有效)*/
@Excel(name = "删除标识(0:删除,1:有效)", width = 15)
@ApiModelProperty(value = "删除标识(0:删除,1:有效)")
private Integer delFlag;
}