package com.fgkj.dto.ram;
|
|
import com.fgkj.dto.PageBean;
|
import org.apache.ibatis.type.Alias;
|
|
import java.io.Serializable;
|
|
@Alias("Fbs9600_state")
|
public class Fbs9600_state implements Serializable {
|
private Integer num;
|
private String dev_ip;
|
private Integer dev_id;
|
private Integer op_cmd;
|
private Integer dev_workstate;
|
private Integer dev_alarmstate;
|
private Integer dev_commcount;
|
private Integer dev_errcommcount;
|
private Integer battgroupid;
|
private String stationName;//机房名称
|
private String deviceName;//设备名称
|
private String battgroupName;//电池组名称
|
private Integer groupIndexInFBSDevice;//被测电池组号
|
private PageBean pageBean;//分页
|
|
public Fbs9600_state() {
|
super();
|
}
|
|
public Integer getNum() {
|
return num;
|
}
|
|
public void setNum(Integer num) {
|
this.num = num;
|
}
|
|
public String getDev_ip() {
|
return dev_ip;
|
}
|
|
public void setDev_ip(String dev_ip) {
|
this.dev_ip = dev_ip;
|
}
|
|
public Integer getDev_id() {
|
return dev_id;
|
}
|
|
public void setDev_id(Integer dev_id) {
|
this.dev_id = dev_id;
|
}
|
|
public Integer getOp_cmd() {
|
return op_cmd;
|
}
|
|
public void setOp_cmd(Integer op_cmd) {
|
this.op_cmd = op_cmd;
|
}
|
|
public Integer getDev_workstate() {
|
return dev_workstate;
|
}
|
|
public void setDev_workstate(Integer dev_workstate) {
|
this.dev_workstate = dev_workstate;
|
}
|
|
public Integer getDev_alarmstate() {
|
return dev_alarmstate;
|
}
|
|
public void setDev_alarmstate(Integer dev_alarmstate) {
|
this.dev_alarmstate = dev_alarmstate;
|
}
|
|
public Integer getDev_commcount() {
|
return dev_commcount;
|
}
|
|
public void setDev_commcount(Integer dev_commcount) {
|
this.dev_commcount = dev_commcount;
|
}
|
|
public Integer getDev_errcommcount() {
|
return dev_errcommcount;
|
}
|
|
public void setDev_errcommcount(Integer dev_errcommcount) {
|
this.dev_errcommcount = dev_errcommcount;
|
}
|
|
public String getStationName() {
|
return stationName;
|
}
|
|
public void setStationName(String stationName) {
|
this.stationName = stationName;
|
}
|
|
public String getDeviceName() {
|
return deviceName;
|
}
|
|
public void setDeviceName(String deviceName) {
|
this.deviceName = deviceName;
|
}
|
|
public PageBean getPageBean() {
|
return pageBean;
|
}
|
|
public void setPageBean(PageBean pageBean) {
|
this.pageBean = pageBean;
|
}
|
|
public String getBattgroupName() {
|
return battgroupName;
|
}
|
|
public void setBattgroupName(String battgroupName) {
|
this.battgroupName = battgroupName;
|
}
|
|
public Integer getGroupIndexInFBSDevice() {
|
return groupIndexInFBSDevice;
|
}
|
|
public void setGroupIndexInFBSDevice(Integer groupIndexInFBSDevice) {
|
this.groupIndexInFBSDevice = groupIndexInFBSDevice;
|
}
|
|
public Integer getBattgroupid() {
|
return battgroupid;
|
}
|
|
public void setBattgroupid(Integer battgroupid) {
|
this.battgroupid = battgroupid;
|
}
|
|
@Override
|
public String toString() {
|
return "Fbs9600_state{" +
|
"num=" + num +
|
", dev_ip='" + dev_ip + '\'' +
|
", dev_id=" + dev_id +
|
", op_cmd=" + op_cmd +
|
", dev_workstate=" + dev_workstate +
|
", dev_alarmstate=" + dev_alarmstate +
|
", dev_commcount=" + dev_commcount +
|
", dev_errcommcount=" + dev_errcommcount +
|
", battgroupid=" + battgroupid +
|
", stationName='" + stationName + '\'' +
|
", deviceName='" + deviceName + '\'' +
|
", battgroupName='" + battgroupName + '\'' +
|
", groupIndexInFBSDevice=" + groupIndexInFBSDevice +
|
", pageBean=" + pageBean +
|
'}';
|
}
|
}
|