whycxzp
2021-07-26 24fd4ac01b448c2dab5dbcc1f9a641a38fc783e7
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
package com.whyc.pojo;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import org.apache.ibatis.type.Alias;
 
import java.util.Date;
 
@ApiModel
@Alias("OilComm")
@TableName( schema = "`db_3.5mw_motor`",value = "tb_oil_comm")
public class OilComm {
 
    Long    num;
    Integer    devId;
    Date    recordTime;
    @ApiModelProperty(value = "油站运行")
    Integer    oilState; 
    @ApiModelProperty(value = "油站高油温报警")
    @TableField("oil_highTmp")
    Integer    oilHighTmp; 
    @ApiModelProperty(value = "油站低液位报警")
    @TableField("oil_lowLevel")
    Integer    oilLowLevel; 
    @ApiModelProperty(value = "油站高液位报警")
    @TableField("oil_highLevel")
    Integer    oilHighLevel;     
    @ApiModelProperty(value = "油站电机1故障")
    @TableField("oil_eleMachine1")
    Integer    oilEleMachine1;     
    @ApiModelProperty(value = "油站电机1故障")
    @TableField("oil_eleMachine2")
    Integer    oilEleMachine2;     
    @ApiModelProperty(value = "油站回油温度")
    @TableField("oil_returnTmp")
    Float    oilReturnTmp;     
    @ApiModelProperty(value = "润滑油出口流量")
    @TableField("oil_highTmp")
    Float    oilOutFlow; 
    @ApiModelProperty(value = "润滑油压力1")
    Float    oilPre1; 
    @ApiModelProperty(value = "润滑油压力2")
    Float    oilPre2; 
    @ApiModelProperty(value = "油站出口1压力")
    @TableField("oil_outpre1")
    Float    oilOutPre1;
    @ApiModelProperty(value = "油站出口2压力")
    @TableField("oil_outpre2")
    Float    oilOutPre2;
    @ApiModelProperty(value = "油站出口3压力")
    @TableField("oil_outpre3")
    Float    oilOutPre3;
    @ApiModelProperty(value = "油站出口4压力")
    @TableField("oil_outpre4")
    Float    oilOutPre4;
    @ApiModelProperty(value = "润滑油回油流量")
    @TableField("oil_returnFlow")
    Float    oilReturnFlow;     
    @ApiModelProperty(value = "油站冷却水压力")
    @TableField("oil_coolpre")
    Float    oilCoolPre;
    @ApiModelProperty(value = "油站冷却水回水温度")
    @TableField("oil_coolTmp")
    Float    oilCoolTmp;
    @ApiModelProperty(value = "油站出油温度")
    @TableField("oil_outTmp")
    Float    oilOutTmp; 
    String    note;
 
    public Long getNum() {
        return num;
    }
 
    public void setNum(Long num) {
        this.num = num;
    }
 
    public Integer getDevId() {
        return devId;
    }
 
    public void setDevId(Integer devId) {
        this.devId = devId;
    }
 
    public Date getRecordTime() {
        return recordTime;
    }
 
    public void setRecordTime(Date recordTime) {
        this.recordTime = recordTime;
    }
 
    public Integer getOilState() {
        return oilState;
    }
 
    public void setOilState(Integer oilState) {
        this.oilState = oilState;
    }
 
    public Integer getOilHighTmp() {
        return oilHighTmp;
    }
 
    public void setOilHighTmp(Integer oilHighTmp) {
        this.oilHighTmp = oilHighTmp;
    }
 
    public Integer getOilLowLevel() {
        return oilLowLevel;
    }
 
    public void setOilLowLevel(Integer oilLowLevel) {
        this.oilLowLevel = oilLowLevel;
    }
 
    public Integer getOilHighLevel() {
        return oilHighLevel;
    }
 
    public void setOilHighLevel(Integer oilHighLevel) {
        this.oilHighLevel = oilHighLevel;
    }
 
    public Integer getOilEleMachine1() {
        return oilEleMachine1;
    }
 
    public void setOilEleMachine1(Integer oilEleMachine1) {
        this.oilEleMachine1 = oilEleMachine1;
    }
 
    public Integer getOilEleMachine2() {
        return oilEleMachine2;
    }
 
    public void setOilEleMachine2(Integer oilEleMachine2) {
        this.oilEleMachine2 = oilEleMachine2;
    }
 
    public Float getOilReturnTmp() {
        return oilReturnTmp;
    }
 
    public void setOilReturnTmp(Float oilReturnTmp) {
        this.oilReturnTmp = oilReturnTmp;
    }
 
    public Float getOilOutFlow() {
        return oilOutFlow;
    }
 
    public void setOilOutFlow(Float oilOutFlow) {
        this.oilOutFlow = oilOutFlow;
    }
 
    public Float getOilPre1() {
        return oilPre1;
    }
 
    public void setOilPre1(Float oilPre1) {
        this.oilPre1 = oilPre1;
    }
 
    public Float getOilPre2() {
        return oilPre2;
    }
 
    public void setOilPre2(Float oilPre2) {
        this.oilPre2 = oilPre2;
    }
 
    public Float getOilOutPre1() {
        return oilOutPre1;
    }
 
    public void setOilOutPre1(Float oilOutPre1) {
        this.oilOutPre1 = oilOutPre1;
    }
 
    public Float getOilOutPre2() {
        return oilOutPre2;
    }
 
    public void setOilOutPre2(Float oilOutPre2) {
        this.oilOutPre2 = oilOutPre2;
    }
 
    public Float getOilOutPre3() {
        return oilOutPre3;
    }
 
    public void setOilOutPre3(Float oilOutPre3) {
        this.oilOutPre3 = oilOutPre3;
    }
 
    public Float getOilOutPre4() {
        return oilOutPre4;
    }
 
    public void setOilOutPre4(Float oilOutPre4) {
        this.oilOutPre4 = oilOutPre4;
    }
 
    public Float getOilReturnFlow() {
        return oilReturnFlow;
    }
 
    public void setOilReturnFlow(Float oilReturnFlow) {
        this.oilReturnFlow = oilReturnFlow;
    }
 
    public Float getOilCoolPre() {
        return oilCoolPre;
    }
 
    public void setOilCoolPre(Float oilCoolPre) {
        this.oilCoolPre = oilCoolPre;
    }
 
    public Float getOilCoolTmp() {
        return oilCoolTmp;
    }
 
    public void setOilCoolTmp(Float oilCoolTmp) {
        this.oilCoolTmp = oilCoolTmp;
    }
 
    public Float getOilOutTmp() {
        return oilOutTmp;
    }
 
    public void setOilOutTmp(Float oilOutTmp) {
        this.oilOutTmp = oilOutTmp;
    }
 
    public String getNote() {
        return note;
    }
 
    public void setNote(String note) {
        this.note = note;
    }
}