fg电池监控平台的达梦数据库版本
whycxzp
2024-11-11 f6cec8970fa54813be5e7eebf641253b7a304606
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
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 io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * <p>
 * 
 * </p>
 *
 * @author xuzhongpei
 * @since 2021-12-16
 */
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@TableName(schema = "db_ram_db",value ="tb_fbs9100_insulatstate")
@ApiModel(value="Fbs9100Insulatstate对象", description="")
public class Fbs9100Insulatstate implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @ApiModelProperty(value = "主键")
    @TableId(value = "num", type = IdType.AUTO)
    private Long num;
 
    @ApiModelProperty(value = "电池组id")
    @TableField("BattGroupId")
    private Integer BattGroupId;
 
    @ApiModelProperty(value = "记录时间")
    private Date recordTime;
 
    @ApiModelProperty(value = "绝缘监测模块系统电压")
    private Float insulatSystemVol;
 
    @ApiModelProperty(value = "绝缘监测模块正对地电压")
    private Float insulatGroundVol;
 
    @ApiModelProperty(value = "绝缘监测模块负对地电压")
    private Float insulatNegativeVol;
 
    @ApiModelProperty(value = "绝缘监测模块正对地电阻")
    private Float insulatGroundRes;
 
    @ApiModelProperty(value = "绝缘监测模块负对地电阻")
    private Float insulatNegativeRes;
 
    @ApiModelProperty(value = "绝缘监测模块电池对地电阻")
    private Float insulatBattRes;
 
    @ApiModelProperty(value = "绝缘监测模块故障电池节数")
    private Integer insulatFaultNum;
 
    @ApiModelProperty(value = "绝缘监测模块交流电压")
    private Float insulatAcVol;
 
    @ApiModelProperty(value = "绝缘监测模块系统状态")
    private Integer insulatSystemState;
 
    @ApiModelProperty(value = "绝缘监测模块瞬时记录状态")
    private Integer insulatRecordState;
 
    @ApiModelProperty(value = "绝缘监测模块装置状态")
    private Integer insulatState;
 
    @ApiModelProperty(value = "绝缘监测模块接地支路号(模块1)")
    @TableField("insulat_branch_num_1")
    private Integer insulatBranchNum1;
 
    @ApiModelProperty(value = "绝缘监测模块支路正对地电阻(模块1)")
    @TableField("insulat_branch_res_is_1")
    private Float insulatBranchResIs1;
 
    @ApiModelProperty(value = "绝缘监测模块支路负对地电阻(模块1)")
    @TableField("insulat_branch_res_ne_1")
    private Float insulatBranchResNe1;
 
    @ApiModelProperty(value = "绝缘监测模块接地支路号(模块2)")
    @TableField("insulat_branch_num_2")
    private Integer insulatBranchNum2;
 
    @ApiModelProperty(value = "绝缘监测模块支路正对地电阻(模块2)")
    @TableField("insulat_branch_res_is_2")
    private Float insulatBranchResIs2;
 
    @ApiModelProperty(value = "绝缘监测模块支路负对地电阻(模块2)")
    @TableField("insulat_branch_res_ne_2")
    private Float insulatBranchResNe2;
 
    @ApiModelProperty(value = "绝缘监测模块接地支路号(模块3)")
    @TableField("insulat_branch_num_3")
    private Integer insulatBranchNum3;
 
    @ApiModelProperty(value = "绝缘监测模块支路正对地电阻(模块3)")
    @TableField("insulat_branch_res_is_3")
    private Float insulatBranchResIs3;
 
    @ApiModelProperty(value = "绝缘监测模块支路负对地电阻(模块3)")
    @TableField("insulat_branch_res_ne_3")
    private Float insulatBranchResNe3;
 
    @ApiModelProperty(value = "绝缘监测模块接地支路号(模块4)")
    @TableField("insulat_branch_num_4")
    private Integer insulatBranchNum4;
 
    @ApiModelProperty(value = "绝缘监测模块支路正对地电阻(模块4)")
    @TableField("insulat_branch_res_is_4")
    private Float insulatBranchResIs4;
 
    @ApiModelProperty(value = "绝缘监测模块支路负对地电阻(模块4)")
    @TableField("insulat_branch_res_ne_4")
    private Float insulatBranchResNe4;
 
    @ApiModelProperty(value = "绝缘监测模块接地支路号(模块5)")
    @TableField("insulat_branch_num_5")
    private Integer insulatBranchNum5;
 
    @ApiModelProperty(value = "绝缘监测模块支路正对地电阻(模块5)")
    @TableField("insulat_branch_res_is_5")
    private Float insulatBranchResIs5;
 
    @ApiModelProperty(value = "绝缘监测模块支路负对地电阻(模块5)")
    @TableField("insulat_branch_res_ne_5")
    private Float insulatBranchResNe5;
 
    @ApiModelProperty(value = "绝缘监测模块接地支路号(模块6)")
    @TableField("insulat_branch_num_6")
    private Integer insulatBranchNum6;
 
    @ApiModelProperty(value = "绝缘监测模块支路正对地电阻(模块6)")
    @TableField("insulat_branch_res_is_6")
    private Float insulatBranchResIs6;
 
    @ApiModelProperty(value = "绝缘监测模块支路负对地电阻(模块6)")
    @TableField("insulat_branch_res_ne_6")
    private Float insulatBranchResNe6;
 
    @ApiModelProperty(value = "绝缘监测模块接地支路号(模块7)")
    @TableField("insulat_branch_num_7")
    private Integer insulatBranchNum7;
 
    @ApiModelProperty(value = "绝缘监测模块支路正对地电阻(模块7)")
    @TableField("insulat_branch_res_is_7")
    private Float insulatBranchResIs7;
 
    @ApiModelProperty(value = "绝缘监测模块支路负对地电阻(模块7)")
    @TableField("insulat_branch_res_ne_7")
    private Float insulatBranchResNe7;
 
    @ApiModelProperty(value = "绝缘监测模块接地支路号(模块8)")
    @TableField("insulat_branch_num_8")
    private Integer insulatBranchNum8;
 
    @ApiModelProperty(value = "绝缘监测模块支路正对地电阻(模块8)")
    @TableField("insulat_branch_res_is_8")
    private Float insulatBranchResIs8;
 
    @ApiModelProperty(value = "绝缘监测模块支路负对地电阻(模块8)")
    @TableField("insulat_branch_res_ne_8")
    private Float insulatBranchResNe8;
 
    @ApiModelProperty(value = "绝缘监测模块接地支路号(模块9)")
    @TableField("insulat_branch_num_9")
    private Integer insulatBranchNum9;
 
    @ApiModelProperty(value = "绝缘监测模块支路正对地电阻(模块9)")
    @TableField("insulat_branch_res_is_9")
    private Float insulatBranchResIs9;
 
    @ApiModelProperty(value = "绝缘监测模块支路负对地电阻(模块9)")
    @TableField("insulat_branch_res_ne_9")
    private Float insulatBranchResNe9;
 
    @ApiModelProperty(value = "绝缘监测模块接地支路号(模块10)")
    @TableField("insulat_branch_num_10")
    private Integer insulatBranchNum10;
 
    @ApiModelProperty(value = "绝缘监测模块支路正对地电阻(模块10)")
    @TableField("insulat_branch_res_is_10")
    private Float insulatBranchResIs10;
 
    @ApiModelProperty(value = "绝缘监测模块支路负对地电阻(模块10)")
    @TableField("insulat_branch_res_ne_10")
    private Float insulatBranchResNe10;
 
    @ApiModelProperty(value = "绝缘监测模块接地支路号(模块11)")
    @TableField("insulat_branch_num_11")
    private Integer insulatBranchNum11;
 
    @ApiModelProperty(value = "绝缘监测模块支路正对地电阻(模块11)")
    @TableField("insulat_branch_res_is_11")
    private Float insulatBranchResIs11;
 
    @ApiModelProperty(value = "绝缘监测模块支路负对地电阻(模块11)")
    @TableField("insulat_branch_res_ne_11")
    private Float insulatBranchResNe11;
 
    @ApiModelProperty(value = "绝缘监测模块接地支路号(模块12)")
    @TableField("insulat_branch_num_12")
    private Integer insulatBranchNum12;
 
    @ApiModelProperty(value = "绝缘监测模块支路正对地电阻(模块12)")
    @TableField("insulat_branch_res_is_12")
    private Float insulatBranchResIs12;
 
    @ApiModelProperty(value = "绝缘监测模块支路负对地电阻(模块12)")
    @TableField("insulat_branch_res_ne_12")
    private Float insulatBranchResNe12;
 
    @ApiModelProperty(value = "绝缘监测模块接地支路号(模块13)")
    @TableField("insulat_branch_num_13")
    private Integer insulatBranchNum13;
 
    @ApiModelProperty(value = "绝缘监测模块支路正对地电阻(模块13)")
    @TableField("insulat_branch_res_is_13")
    private Float insulatBranchResIs13;
 
    @ApiModelProperty(value = "绝缘监测模块支路负对地电阻(模块13)")
    @TableField("insulat_branch_res_ne_13")
    private Float insulatBranchResNe13;
 
    @ApiModelProperty(value = "绝缘监测模块接地支路号(模块14)")
    @TableField("insulat_branch_num_14")
    private Integer insulatBranchNum14;
 
    @ApiModelProperty(value = "绝缘监测模块支路正对地电阻(模块14)")
    @TableField("insulat_branch_res_is_14")
    private Float insulatBranchResIs14;
 
    @ApiModelProperty(value = "绝缘监测模块支路负对地电阻(模块14)")
    @TableField("insulat_branch_res_ne_14")
    private Float insulatBranchResNe14;
 
    @ApiModelProperty(value = "绝缘监测模块接地支路号(模块15)")
    @TableField("insulat_branch_num_15")
    private Integer insulatBranchNum15;
 
    @ApiModelProperty(value = "绝缘监测模块支路正对地电阻(模块15)")
    @TableField("insulat_branch_res_is_15")
    private Float insulatBranchResIs15;
 
    @ApiModelProperty(value = "绝缘监测模块支路负对地电阻(模块15)")
    @TableField("insulat_branch_res_ne_15")
    private Float insulatBranchResNe15;
 
    @ApiModelProperty(value = "绝缘监测模块接地支路号(模块16)")
    @TableField("insulat_branch_num_16")
    private Integer insulatBranchNum16;
 
    @ApiModelProperty(value = "绝缘监测模块支路正对地电阻(模块16)")
    @TableField("insulat_branch_res_is_16")
    private Float insulatBranchResIs16;
 
    @ApiModelProperty(value = "绝缘监测模块支路负对地电阻(模块16)")
    @TableField("insulat_branch_res_ne_16")
    private Float insulatBranchResNe16;
 
    @ApiModelProperty(value = "备用")
    private String note;
 
    @ApiModelProperty(value = "电源id")
    @TableField("PowerDeviceId")
    private Integer PowerDeviceId;
 
    @ApiModelProperty(value = "协转版本号")
    private String devVersion;
 
 
}