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
package com.whyc.pojo;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
@Data
@ApiModel("Fbs9600")
@TableName(schema = "db_ram_db",value = "tb_fbs9600_state")
public class Fbs9600State {
    @TableId
    private Integer num;
    private String devIp;
    private Integer devId;
    private Integer opCmd;
    private Integer devWorkstate;
    private Integer devAlarmstate;
    private Integer devCommcount;
    private Integer devErrcommcount;
    @TableField(exist = false)
    private Integer battgroupid;
    @TableField(exist = false)
    private String stationName;//机房名称
    @TableField(exist = false)
    private String deviceName;//设备名称
    @TableField(exist = false)
    private String battgroupName;//电池组名称
    @TableField(exist = false)
    private Integer GroupIndexInFBSDevice;//被测电池组号
}