whycxzp
2025-03-01 e76c58f4c0e9c334a19c9c4418343ca99d5e3d0f
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
package com.whyc.pojo;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.ToString;
 
import java.io.Serializable;
import java.util.Date;
 
 
@TableName(schema = "db_ram_db",value = "tb_batt_rtstate")
public class BattRTState{
 
    private Long num;
 
    @TableField("BattGroupId")
    private Integer battGroupId;
 
    private Integer battCount;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date recDatetime;
 
    private Float onlineVol;
 
    private Float groupVol;
 
    private Float groupTmp;
 
    private Float groupCurr;
 
    /**
     *  未知       0
     *  浮充       1
     *  充电       2
     *  放电       3
     *  均充       4
     *  内阻测试   5
     */
    private Integer battState;
 
    private Integer battTestType;
 
    private Date battTestStarttime;
 
    private Date battTestRecordtime;
 
    private Integer battTestTlong;
 
    private Float battTestCap;
 
    private Float battRealCap;
 
    private Float battRestCap;
 
    private Integer battRestPower1Time;
 
    private Integer battRestPower2Time;
 
    private Integer testLoadertype;
 
    private Integer testRecordnum;
 
    private Integer a059Num;
 
    @TableField("dev_testPower")
    private Float devTestPower;
 
    @TableField("batt_alm_state")
    @ApiModelProperty(value = "电池组告警状态")
    private Integer battAlmState;
 
 
   /*9800生效*/
    @TableField("dev_temperature")
    @ApiModelProperty(value = "温度传感器温度")
    private Float devTemperature;
 
    @TableField("dev_humidity")
    @ApiModelProperty(value = "温度传感器湿度")
    private Float devHumidity;
 
    public Long getNum() {
        return num;
    }
 
    public void setNum(Long num) {
        this.num = num;
    }
 
    public Integer getBattGroupId() {
        return battGroupId;
    }
 
    public void setBattGroupId(Integer battGroupId) {
        this.battGroupId = battGroupId;
    }
 
    public Integer getBattCount() {
        return battCount;
    }
 
    public void setBattCount(Integer battCount) {
        this.battCount = battCount;
    }
 
    public Date getRecDatetime() {
        return recDatetime;
    }
 
    public void setRecDatetime(Date recDatetime) {
        this.recDatetime = recDatetime;
    }
 
    public Float getOnlineVol() {
        return onlineVol;
    }
 
    public void setOnlineVol(Float onlineVol) {
        this.onlineVol = onlineVol;
    }
 
    public Float getGroupVol() {
        return groupVol;
    }
 
    public void setGroupVol(Float groupVol) {
        this.groupVol = groupVol;
    }
 
    public Float getGroupTmp() {
        return groupTmp;
    }
 
    public void setGroupTmp(Float groupTmp) {
        this.groupTmp = groupTmp;
    }
 
    public Float getGroupCurr() {
        return groupCurr;
    }
 
    public void setGroupCurr(Float groupCurr) {
        this.groupCurr = groupCurr;
    }
 
    public Integer getBattState() {
        return battState;
    }
 
    public void setBattState(Integer battState) {
        this.battState = battState;
    }
 
    public Integer getBattTestType() {
        return battTestType;
    }
 
    public void setBattTestType(Integer battTestType) {
        this.battTestType = battTestType;
    }
 
    public Date getBattTestStarttime() {
        return battTestStarttime;
    }
 
    public void setBattTestStarttime(Date battTestStarttime) {
        this.battTestStarttime = battTestStarttime;
    }
 
    public Date getBattTestRecordtime() {
        return battTestRecordtime;
    }
 
    public void setBattTestRecordtime(Date battTestRecordtime) {
        this.battTestRecordtime = battTestRecordtime;
    }
 
    public Integer getBattTestTlong() {
        return battTestTlong;
    }
 
    public void setBattTestTlong(Integer battTestTlong) {
        this.battTestTlong = battTestTlong;
    }
 
    public Float getBattTestCap() {
        return battTestCap;
    }
 
    public void setBattTestCap(Float battTestCap) {
        this.battTestCap = battTestCap;
    }
 
    public Float getBattRealCap() {
        return battRealCap;
    }
 
    public void setBattRealCap(Float battRealCap) {
        this.battRealCap = battRealCap;
    }
 
    public Float getBattRestCap() {
        return battRestCap;
    }
 
    public void setBattRestCap(Float battRestCap) {
        this.battRestCap = battRestCap;
    }
 
    public Integer getBattRestPower1Time() {
        return battRestPower1Time;
    }
 
    public void setBattRestPower1Time(Integer battRestPower1Time) {
        this.battRestPower1Time = battRestPower1Time;
    }
 
    public Integer getBattRestPower2Time() {
        return battRestPower2Time;
    }
 
    public void setBattRestPower2Time(Integer battRestPower2Time) {
        this.battRestPower2Time = battRestPower2Time;
    }
 
    public Integer getTestLoadertype() {
        return testLoadertype;
    }
 
    public void setTestLoadertype(Integer testLoadertype) {
        this.testLoadertype = testLoadertype;
    }
 
    public Integer getTestRecordnum() {
        return testRecordnum;
    }
 
    public void setTestRecordnum(Integer testRecordnum) {
        this.testRecordnum = testRecordnum;
    }
 
    public Integer getA059Num() {
        return a059Num;
    }
 
    public void setA059Num(Integer a059Num) {
        this.a059Num = a059Num;
    }
 
    public Float getDevTestPower() {
        return devTestPower;
    }
 
    public void setDevTestPower(Float devTestPower) {
        this.devTestPower = devTestPower;
    }
 
    public Integer getBattAlmState() {
        return battAlmState;
    }
 
    public void setBattAlmState(Integer battAlmState) {
        this.battAlmState = battAlmState;
    }
 
    public Float getDevTemperature() {
        return devTemperature;
    }
 
    public void setDevTemperature(Float devTemperature) {
        this.devTemperature = devTemperature;
    }
 
    public Float getDevHumidity() {
        return devHumidity;
    }
 
    public void setDevHumidity(Float devHumidity) {
        this.devHumidity = devHumidity;
    }
}