fg电池监控平台的达梦数据库版本
whycxzp
2024-11-13 8dc414d196df2bc4891e0c84333871f6b7fc8a7e
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
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 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;
 
@Data
@ToString
@AllArgsConstructor
@NoArgsConstructor
@Alias("BattTestDataInf")
@ApiModel(value = "BatttestdataInf对象", description = "")
@TableName(schema = "db_batt_testdata", value = "tb_batttestdata_inf")
public class BatttestdataInf implements Serializable {
 
    private static final long serialVersionUID = 8905581799258656790L;
    @TableId(value = "num", type = IdType.AUTO)
    private Integer num;
 
    @TableField("BattGroupId")
    private Integer battGroupId;
 
    private Integer testRecordCount;
 
    private Integer testRecordCountEx;
 
    private Integer testType;
 
    private Integer recordTimeInterval;
 
    private Byte dataNew;
 
    private Byte dataAvailable;
 
    private Integer recordNum;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date testStarttime;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date testStarttimeEx;
 
    private Integer testStarttype;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date recordTime;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @TableField(exist = false)
    private Date recordTime1;
 
    private Integer testTimelong;
 
    private Integer testStoptype;
 
    @TableField(exist = false)
    private String testStoptypeReason;//放电终止原因
 
    @TableField(exist = false)
    private String teststarttypeHex;//存放具体的放电测试的类型
 
    private Float groupVol;
 
    private Float testCurr;
 
    private Float testCap;
 
    private Integer maxMonnum;
 
    private Float maxMonvol;
 
    private Integer minMonnum;
 
    private Float minMonvol;
 
    private Integer monNum;
 
    private Float monVol;
 
    private Integer uploadUsrId;
 
    private Integer uploadDataExt;
 
    private Integer uploadClientType;
 
    @ApiModelProperty(value = "山西61850监测放电数据标识【0:监测放电;1停电放电】")
    private Integer testDatatype;
 
    @TableField(exist = false)
    private List<BattTestDataStop> batttestdataList;
 
    @TableField(exist = false)
    private Battinf battInf;
 
    /**
     * 用于描述res的属性,共用查询使用
     */
    @TableField(exist = false)
    private Integer testDevType;
    @TableField(exist = false)
    private Float alarmLowCoe4CapAlarm;
    @TableField(exist = false)
    private Float alarmLowCoe4CapChange;
    /**
     * 落后单体数量
     */
    @TableField(exist = false)
    private Integer capBehindMonNum;
    /**
     * 落后单体编号
     */
    @TableField(exist = false)
    private String capBehindMonCode;
    /**
     * 落后单体电压
     */
    @TableField(exist = false)
    private String capBehindMonVol;
    @TableField(exist = false)
    private float avgVol;
 
    @TableField(exist = false)
    private float monCapStd;
    @TableField(exist = false)
    private float monVolStd;
    @TableField(exist = false)
    private float realCap;
 
    @TableField(exist = false)
    private String stationName;
    @TableField(exist = false)
    private String stationName1;
    @TableField(exist = false)
    private String stationName2;
    @TableField(exist = false)
    private String stationName3;
    @TableField(exist = false)
    private String stationName4;
    @TableField(exist = false)
    private String stationName5;
    @TableField(exist = false)
    private String battGroupName;
    @TableField(exist = false)
    private String stationId;
    @TableField(exist = false)
    private int fBSDeviceId;
}