13693261870
2025-07-02 6708810c4de34dfb9513061432d656f91d56ee3a
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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
package com.ruoyi.fuzhou.domain;
 
import com.baomidou.mybatisplus.annotation.*;
import io.swagger.v3.oas.annotations.media.Schema;
 
import java.util.Date;
 
/**
 * <p>
 * 油设备实时数据
 * </p>
 *
 * @author zhangyy
 * @since 2025-03-12
 */
@TableName("RECEIVE_OIL_VALUE")
@Schema( description = "油设备实时数据")
public class ReceiveOilValue {
 
    @Schema(description = "主键")
    @TableId(value = "ID", type = IdType.ASSIGN_ID)
    private Long id;
 
    @Schema(description = "质量流量")
    @TableField("QUALITY_FLOW")
    private String qualityFlow;
 
    @Schema(description = "密度")
    @TableField("DENSITY")
    private String density;
 
    @Schema(description = "温度")
    @TableField("TEMP")
    private String temp;
 
    @Schema(description = "体积流量")
    @TableField("VOLUME_FLOW")
    private String volumeFlow;
 
    @Schema(description = "体积质量")
    @TableField("VOLUME_QUALITY")
    private String volumeQuality;
 
    @Schema(description = "体积总量")
    @TableField("VOLUME_TOTAL")
    private String volumeTotal;
 
    @Schema(description = "含水率")
    @TableField("WATER_RATE")
    private String waterRate;
 
    @Schema(description = "纯油质量累积")
    @TableField("OIL_TOTAL")
    private String oilTotal;
 
    @Schema(description = "纯水质量累积")
    @TableField("WATER_TOTAL")
    private String waterTotal;
 
    @Schema(description = "纯油量标准温度下")
    @TableField("OIL_TEMP")
    private String oilTemp;
 
    @Schema(description = "纯水量标准温度下")
    @TableField("WATER_TEMP")
    private String waterTemp;
 
    @Schema(description = "纯油量")
    @TableField("OIL")
    private String oil;
 
    @Schema(description = "纯水量")
    @TableField("WATER")
    private String water;
 
    @Schema(description = "温补后油密度")
    @TableField("TEMP_OIL_DENSITY")
    private String tempOilDensity;
 
    @Schema(description = "温补后水密度")
    @TableField("TEMP_WATER_DENSITY")
    private String tempWaterDensity;
 
    @Schema(description = "纯油瞬时流量")
    @TableField("OIL_TIME_FLOW")
    private String oilTimeFlow;
 
    @Schema(description = "入库时间")
    @TableField(value = "CREATE_TIME", fill = FieldFill.INSERT)
    private Date createTime;
 
    @Schema(description = "设备名称")
    @TableField("DEVICE_NAME")
    private String deviceName;
 
    @Schema(description = "累计流量")
    @TableField("FLOW_TOTAL")
    private String flowTotal;
 
    @Schema(description = "质量总量L")
    @TableField("FLOW_TOTAL_L")
    private String flowTotalL;
 
    @Schema(description = "质量总量H")
    @TableField("FLOW_TOTAL_H")
    private String flowTotalH;
 
    @Schema(description = "体积总量L")
    @TableField("VOLUME_TOTAL_L")
    private String volumeTotalL;
 
    @Schema(description = "体积总量H")
    @TableField("VOLUME_TOTAL_H")
    private String volumeTotalH;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getQualityFlow() {
        return qualityFlow;
    }
 
    public void setQualityFlow(String qualityFlow) {
        this.qualityFlow = qualityFlow;
    }
 
    public String getDensity() {
        return density;
    }
 
    public void setDensity(String density) {
        this.density = density;
    }
 
    public String getTemp() {
        return temp;
    }
 
    public void setTemp(String temp) {
        this.temp = temp;
    }
 
    public String getVolumeFlow() {
        return volumeFlow;
    }
 
    public void setVolumeFlow(String volumeFlow) {
        this.volumeFlow = volumeFlow;
    }
 
    public String getVolumeQuality() {
        return volumeQuality;
    }
 
    public void setVolumeQuality(String volumeQuality) {
        this.volumeQuality = volumeQuality;
    }
 
    public String getVolumeTotal() {
        return volumeTotal;
    }
 
    public void setVolumeTotal(String volumeTotal) {
        this.volumeTotal = volumeTotal;
    }
 
    public String getWaterRate() {
        return waterRate;
    }
 
    public void setWaterRate(String waterRate) {
        this.waterRate = waterRate;
    }
 
    public String getOilTotal() {
        return oilTotal;
    }
 
    public void setOilTotal(String oilTotal) {
        this.oilTotal = oilTotal;
    }
 
    public String getWaterTotal() {
        return waterTotal;
    }
 
    public void setWaterTotal(String waterTotal) {
        this.waterTotal = waterTotal;
    }
 
    public String getOilTemp() {
        return oilTemp;
    }
 
    public void setOilTemp(String oilTemp) {
        this.oilTemp = oilTemp;
    }
 
    public String getWaterTemp() {
        return waterTemp;
    }
 
    public void setWaterTemp(String waterTemp) {
        this.waterTemp = waterTemp;
    }
 
    public String getOil() {
        return oil;
    }
 
    public void setOil(String oil) {
        this.oil = oil;
    }
 
    public String getWater() {
        return water;
    }
 
    public void setWater(String water) {
        this.water = water;
    }
 
    public String getTempOilDensity() {
        return tempOilDensity;
    }
 
    public void setTempOilDensity(String tempOilDensity) {
        this.tempOilDensity = tempOilDensity;
    }
 
    public String getTempWaterDensity() {
        return tempWaterDensity;
    }
 
    public void setTempWaterDensity(String tempWaterDensity) {
        this.tempWaterDensity = tempWaterDensity;
    }
 
    public String getOilTimeFlow() {
        return oilTimeFlow;
    }
 
    public void setOilTimeFlow(String oilTimeFlow) {
        this.oilTimeFlow = oilTimeFlow;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public String getDeviceName() {
        return deviceName;
    }
 
    public void setDeviceName(String deviceName) {
        this.deviceName = deviceName;
    }
 
    public String getFlowTotal() {
        return flowTotal;
    }
 
    public void setFlowTotal(String flowTotal) {
        this.flowTotal = flowTotal;
    }
 
    public String getFlowTotalL() {
        return flowTotalL;
    }
 
    public void setFlowTotalL(String flowTotalL) {
        this.flowTotalL = flowTotalL;
    }
 
    public String getFlowTotalH() {
        return flowTotalH;
    }
 
    public void setFlowTotalH(String flowTotalH) {
        this.flowTotalH = flowTotalH;
    }
 
    public String getVolumeTotalL() {
        return volumeTotalL;
    }
 
    public void setVolumeTotalL(String volumeTotalL) {
        this.volumeTotalL = volumeTotalL;
    }
 
    public String getVolumeTotalH() {
        return volumeTotalH;
    }
 
    public void setVolumeTotalH(String volumeTotalH) {
        this.volumeTotalH = volumeTotalH;
    }
}