package com.fgkj.dto.ram;
|
|
import java.io.Serializable;
|
|
import com.fgkj.dto.Page;
|
|
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 stationName5;//区县名称
|
private String deviceName;//设备名称
|
private String battgroupName;//电池组名称
|
private Integer GroupIndexInFBSDevice;//被测电池组号
|
private Page page;//分页
|
public Fbs9600_state() {
|
super();
|
// TODO Auto-generated constructor stub
|
}
|
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 Page getPage() {
|
return page;
|
}
|
public void setPage(Page page) {
|
this.page = page;
|
}
|
public String getBattgroupName() {
|
return battgroupName;
|
}
|
public void setBattgroupName(String battgroupName) {
|
this.battgroupName = battgroupName;
|
}
|
public Integer getGroupIndexInFBSDevice() {
|
return GroupIndexInFBSDevice;
|
}
|
public void setGroupIndexInFBSDevice(Integer groupIndexInFBSDevice) {
|
GroupIndexInFBSDevice = groupIndexInFBSDevice;
|
}
|
public Integer getBattgroupid() {
|
return battgroupid;
|
}
|
public void setBattgroupid(Integer battgroupid) {
|
this.battgroupid = battgroupid;
|
}
|
public String getStationName5() {
|
return stationName5;
|
}
|
public void setStationName5(String stationName5) {
|
this.stationName5 = stationName5;
|
}
|
@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 + ", stationName5="
|
+ stationName5 + ", deviceName=" + deviceName
|
+ ", battgroupName=" + battgroupName
|
+ ", GroupIndexInFBSDevice=" + GroupIndexInFBSDevice
|
+ ", page=" + page + "]";
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|