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;//被测电池组号
|
}
|