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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
package com.whyc.pojo;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.ToString;
import org.apache.ibatis.type.Alias;
 
import java.io.Serializable;
import java.util.Date;
import java.util.List;
 
/**
 * <p>
 * 
 * </p>
 *
 * @author lxw
 * @since 2021-10-14
 */
@Data
@ToString
@AllArgsConstructor
@NoArgsConstructor
@Alias("BattInf")
@ApiModel(value="Tbbattinf对象", description="")
@TableName(schema = "db_battinf",value = "tb_battinf")
@JsonIgnoreProperties(ignoreUnknown = true)
public class Battinf implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "num", type = IdType.AUTO)
    private Integer num;
 
    @TableField("StationId")
    private String stationId;
 
    @TableField("StationId_ex")
    private String stationidEx;
 
    @TableField("stationName")
    private String stationName;
 
    @TableField("stationName1")
    private String stationName1;
 
    @TableField("stationName2")
    private String stationName2;
 
    @TableField("stationName3")
    private String stationName3;
 
    @TableField("stationName4")
    private String stationName4;
 
    @TableField("stationName5")
    private String stationName5;
 
    @TableField("stationName6")
    private String stationName6;
 
    @TableField("stationName7")
    private String stationName7;
 
    @TableField("stationName8")
    @ApiModelProperty(value = "苏州地铁专用:标明几号线的第几个站点从1开始")
    private String stationName8;
 
    @TableField("stationName9")
    @ApiModelProperty(value = "苏州地铁专用:表明几号线")
    private String stationName9;
 
    @TableField("StationIP")
    private String stationIP;
 
    @TableField("FBSDeviceId")
    private Long fBSDeviceId;
 
    @TableField("FBSDeviceIp")
    private String fBSDeviceIp;
 
    @TableField("FBSDeviceIp_WG")
    private String fbsdeviceipWg;
 
    @TableField("FBSDeviceIp_YM")
    private String fbsdeviceipYm;
 
    @TableField("FBSDeviceName")
    private String fBSDeviceName;
 
    @TableField("GroupIndexInFBSDevice")
    private Integer groupIndexInFBSDevice;
 
    @TableField("battModel")
    private String battModel;
 
    @TableField(" battGroupId")
    private Integer  battGroupId;
 
    @TableField(" battGroupNum")
    private Integer  battGroupNum;
 
    @TableField(" battGroupName")
    private String  battGroupName;
 
    @TableField(" battGroupName1")
    private String  battGroupName1;
 
    @TableField(" battGroupName2")
    private String  battGroupName2;
 
    @TableField(" battGroupName3")
    private String  battGroupName3;
 
    @TableField(" battGroupName4")
    private String  battGroupName4;
 
    @TableField(" battGroupName5")
    private String  battGroupName5;
 
    @TableField(" battGroupName6")
    private String  battGroupName6;
 
    @TableField("FloatVolLevel")
    private Float floatVolLevel;
 
    @TableField("OfflineVolLevel")
    private Float offlineVolLevel;
 
    @TableField("battFloatCurrent")
    private Float battFloatCurrent;
 
    @TableField("DeviceId")
    private String deviceId;
 
    @TableField("DeviceName")
    private String deviceName;
 
    @TableField("monCount")
    private Integer monCount;
 
    @TableField("monCapStd")
    private Float monCapStd;
 
    @TableField("monVolStd")
    private Float monVolStd;
 
    @TableField("monResStd")
    private Float monResStd;
 
    @TableField("monSerStd")
    private Float monSerStd;
 
    @TableField("monTmpStd")
    private Float monTmpStd;
 
    @TableField("monVolLowToAvg")
    private Float monVolLowToAvg;
 
    @TableField("monNum")
    private Integer monNum;
 
    @TableField("battProducer")
    private String battProducer;
 
    @TableField("battProductDate")
    @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
    private Date battProductDate;
    @TableField(value = "battProductDate1",exist = false)
    @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
    private Date battProductDate1;
 
    @TableField("battInUseDate")
    @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
    private Date battInUseDate;
 
    @TableField("battGuarantDayCount")
    private Integer battGuarantDayCount;
 
    @TableField("SignalId")
    private String signalId;
 
    @TableField("CInterFaceId")
    private Integer cInterFaceId;
 
    @TableField("SignalName")
    private String signalName;
 
    @TableField("Load_curr")
    private Float loadCurr;
 
    @TableField("DisCurrMax")
    private Float disCurrMax;
 
    private String stationPhone;
 
    private int stationInstall;
 
    private String installUser;
 
    private Float chargeCurrMax;
 
    @TableField("Vol_grade")
    private Float volGrade;
 
    @TableField("Manufacturers")
    private String manufacturers;
 
    @TableField("Assetequipment")
    private String assetequipment;
 
    @TableField("Deviceclasspath")
    private String deviceclasspath;
 
    @TableField("DeviceOperationDepartment")
    private String deviceOperationDepartment;
 
    @TableField("PropertyRightUnit")
    private String propertyRightUnit;
 
    @TableField("PropertyAttribute")
    private String propertyAttribute;
 
    @TableField("FactoryNumber")
    private String factoryNumber;
 
    @TableField("OperationTeam")
    private String operationTeam;
 
    @TableField("DeviceIdentityCode")
    private String deviceIdentityCode;
 
    @TableField("ProjectType")
    private String projectType;
 
    @TableField("batteryApplicationType")
    private String batteryApplicationType;
 
    @TableField("SingleRatedVoltage")
    private Float singleRatedVoltage;
 
    @TableField("Remotemonitor")
    private String remotemonitor;
 
    @TableField("batttIndependentPlaced")
    private String batttIndependentPlaced;
 
    @TableField("JunChargeVoltageValue")
    private Float junChargeVoltageValue;
 
    @TableField("PublicKeyX")
    private String publicKeyX;
 
    @TableField("PublicKeyY")
    private String publicKeyY;
 
    @TableField("KeyID")
    private String keyID;
 
    @TableField("SerialNumber")
    private String serialNumber;
 
    private Integer sortId;
 
    private String videoUrl;
 
    @ApiModelProperty(value = "充放电状态:1:限流充电;2;逆变充电")
    private Integer chargeType;
 
    @ApiModelProperty(value = "母联状态:0:无母联;1:有母联")
    private Integer buscoupleState;
 
    private Integer tmpId;
 
    @ApiModelProperty(value = "锂电池包数量")
    @TableField("PackCount")
    private Integer packCount;
    @ApiModelProperty("设备编号[a059用于标识设备]")
    private String devNum;
 
    @TableField(exist = false)
    private Fbs9100Setparam fparam;
    @TableField(exist = false)
    private Integer testRecordCount;
    @TableField("mId")
    @JsonProperty("mId")
    @ApiModelProperty("太原供电局二维码标识位")
    private Long mId;
    @TableField(exist = false)
    private Double longitude;
 
 
    @TableField(exist = false)
    private Double latitude;
 
    @TableField("cellShowType")
    @ApiModelProperty(" 0:铅酸 1:锂电")
    private Integer cellShowType;
 
    @TableField("NomCapWH")
    @ApiModelProperty("标称容量[KWH]")
    private Float nomCapWH;
    @TableField("NomCapAH")
    @ApiModelProperty("标称容量AH")
    private Float nomCapAH;
    @TableField("LoadCurrFromDis")
    private Float loadCurrFromDis;
    @TableField("NodeStation")
    private Integer nodeStation;
 
    @TableField("StationType")
    private String stationType;
 
    @TableField("sign_type")
    @ApiModelProperty("验签格式0-常规  1-正常1拖2[61850设备有效]")
    private Integer signType;
 
    @TableField(exist = false)
    private String note;
    @TableField(exist = false)
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date dischargeStartTime;
 
 
    @TableField(exist = false)
    @ApiModelProperty("电池信息更改原因")
    private String updateReason;
 
    @TableField(exist = false)
    @ApiModelProperty("电池组端实时数据")
    private BattRtstate rtstate;
 
    @TableField(exist = false)
    @ApiModelProperty("电池单体实时数据")
    private List monNumList;
 
    @TableField(exist = false)
    @ApiModelProperty("天一电厂3D电池组对照关系")
    private String compareInf;
 
    @TableField(exist = false)
    @ApiModelProperty("天一电厂3D电池组实时告警单体编号")
    private String alarmNumIn3D;
 
    @TableField("topology_map_type")
    @ApiModelProperty("拓扑图类型")
    private Integer topologyMapType;
 
    @TableField(" acdc_secuity_flag")
    @ApiModelProperty("交直流屏实时数据显示标志")
    private Integer acdcSecuityFlag;
 
    @TableField(" comm_port")
    @ApiModelProperty("通信端口号[0使用默认端口102]-现适用于BTS2202'")
    private Integer commPort;
 
    @TableField(" label_cfg")
    @ApiModelProperty("实时监控标签配置(空字符串所有都选中)")
    private String labelCfg;
}