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
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.*;
import lombok.experimental.Accessors;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * <p>
 * 
 * </p>
 *
 * @author xuzhongpei
 * @since 2021-12-25
 */
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@TableName(schema = "db_ram_db",value = "tb_fbs9100s_fod_state")
@ApiModel(value="Fbs9100sFodState对象", description="")
@AllArgsConstructor
@NoArgsConstructor
@ToString
public class Fbs9100sFodState implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "num", type = IdType.AUTO)
    private Integer num;
 
    @ApiModelProperty(value = "设备id")
    private Integer devId;
 
    @ApiModelProperty(value = "电池组id")
    @TableField("BattGroupId")
    private Integer BattGroupId;
 
    @ApiModelProperty(value = "记录时间")
    private Date recordTime;
 
    @ApiModelProperty(value = "剩余天数(组1)")
    @TableField("RestTime_one")
    private Integer resttimeOne;
 
    @ApiModelProperty(value = "工作模式(组1)")
    @TableField("WorkState_one")
    private Integer workstateOne;
 
    @ApiModelProperty(value = "组端电压(组1)")
    @TableField("VGroupVol_one")
    private Double vgroupvolOne;
 
    @ApiModelProperty(value = "峰值电压(组1)")
    @TableField("VpeakVol_one")
    private Double vpeakvolOne;
 
    @ApiModelProperty(value = "剩余天数(组2)")
    @TableField("RestTime_two")
    private Integer resttimeTwo;
 
    @ApiModelProperty(value = "工作模式(组2)")
    @TableField("WorkState_two")
    private Integer workstateTwo;
 
    @ApiModelProperty(value = "组端电压(组2)")
    @TableField("VGroupVol_two")
    private Double vgroupvolTwo;
 
    @ApiModelProperty(value = "峰值电压(组2)")
    @TableField("VpeakVol_two")
    private Double vpeakvolTwo;
 
    @ApiModelProperty(value = "剩余天数(组3)")
    @TableField("RestTime_three")
    private Integer resttimeThree;
 
    @ApiModelProperty(value = "工作模式(组3)")
    @TableField("WorkState_three")
    private Integer workstateThree;
 
    @ApiModelProperty(value = "组端电压(组3)")
    @TableField("VGroupVol_three")
    private Double vgroupvolThree;
 
    @ApiModelProperty(value = "峰值电压(组3)")
    @TableField("VpeakVol_three")
    private Double vpeakvolThree;
 
    @ApiModelProperty(value = "剩余天数(组4)")
    @TableField("RestTime_four")
    private Integer resttimeFour;
 
    @ApiModelProperty(value = "工作模式(组4)")
    @TableField("WorkState_four")
    private Integer workstateFour;
 
    @ApiModelProperty(value = "组端电压(组4)")
    @TableField("VGroupVol_four")
    private Double vgroupvolFour;
 
    @ApiModelProperty(value = "峰值电压(组4)")
    @TableField("VpeakVol_four")
    private Double vpeakvolFour;
 
    @ApiModelProperty(value = "剩余时间(组5)")
    @TableField("RestTime_five")
    private Integer resttimeFive;
 
    @ApiModelProperty(value = "除硫5状态(组5)")
    @TableField("WorkState_five")
    private Integer workstateFive;
 
    @ApiModelProperty(value = "组端电压(组5)")
    @TableField("VGroupVol_five")
    private Integer vgroupvolFive;
 
    @ApiModelProperty(value = "峰值电压(组5)")
    @TableField("VpeakVol_five")
    private Integer vpeakvolFive;
 
 
}