package com.fgkj.dto;
|
|
import org.apache.ibatis.type.Alias;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
@Alias("BTS_61850_state")
|
public class BTS_61850_state implements Serializable{
|
private int num;
|
private int fbsDeviceId;
|
private String dev_ip;
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "Asia/Shanghai")
|
private Date stc_datatime;
|
private float stc_groupvol_low;
|
private int stc_cap_high;
|
private int stc_timespan_high;
|
private int stc_discurr;
|
private float stc_monvol_low;
|
private float stc_montmp_high;
|
private int stc_workstate;
|
private int alam_tmp;
|
private int alam_relay;
|
private int alam_comm;
|
private float dev_captest_online;
|
private float dev_captest_groupvol;
|
private int timelong;
|
private int dev_errcommcount;
|
private int dev_commcount;
|
private PageBean pageBean;//分页
|
public int getNum() {
|
return num;
|
}
|
public void setNum(int num) {
|
this.num = num;
|
}
|
|
public int getFbsDeviceId() {
|
return fbsDeviceId;
|
}
|
|
public void setFbsDeviceId(int fbsDeviceId) {
|
this.fbsDeviceId = fbsDeviceId;
|
}
|
|
public Date getStc_datatime() {
|
return stc_datatime;
|
}
|
public void setStc_datatime(Date stc_datatime) {
|
this.stc_datatime = stc_datatime;
|
}
|
public float getStc_groupvol_low() {
|
return stc_groupvol_low;
|
}
|
public void setStc_groupvol_low(float stc_groupvol_low) {
|
this.stc_groupvol_low = stc_groupvol_low;
|
}
|
public int getStc_cap_high() {
|
return stc_cap_high;
|
}
|
public void setStc_cap_high(int stc_cap_high) {
|
this.stc_cap_high = stc_cap_high;
|
}
|
public int getStc_timespan_high() {
|
return stc_timespan_high;
|
}
|
public void setStc_timespan_high(int stc_timespan_high) {
|
this.stc_timespan_high = stc_timespan_high;
|
}
|
public int getStc_discurr() {
|
return stc_discurr;
|
}
|
public void setStc_discurr(int stc_discurr) {
|
this.stc_discurr = stc_discurr;
|
}
|
public float getStc_monvol_low() {
|
return stc_monvol_low;
|
}
|
public void setStc_monvol_low(float stc_monvol_low) {
|
this.stc_monvol_low = stc_monvol_low;
|
}
|
public float getStc_montmp_high() {
|
return stc_montmp_high;
|
}
|
public void setStc_montmp_high(float stc_montmp_high) {
|
this.stc_montmp_high = stc_montmp_high;
|
}
|
public int getStc_workstate() {
|
return stc_workstate;
|
}
|
public void setStc_workstate(int stc_workstate) {
|
this.stc_workstate = stc_workstate;
|
}
|
public int getAlam_tmp() {
|
return alam_tmp;
|
}
|
public void setAlam_tmp(int alam_tmp) {
|
this.alam_tmp = alam_tmp;
|
}
|
public int getAlam_relay() {
|
return alam_relay;
|
}
|
public void setAlam_relay(int alam_relay) {
|
this.alam_relay = alam_relay;
|
}
|
public int getAlam_comm() {
|
return alam_comm;
|
}
|
public void setAlam_comm(int alam_comm) {
|
this.alam_comm = alam_comm;
|
}
|
public float getDev_captest_online() {
|
return dev_captest_online;
|
}
|
public void setDev_captest_online(float dev_captest_online) {
|
this.dev_captest_online = dev_captest_online;
|
}
|
public float getDev_captest_groupvol() {
|
return dev_captest_groupvol;
|
}
|
public void setDev_captest_groupvol(float dev_captest_groupvol) {
|
this.dev_captest_groupvol = dev_captest_groupvol;
|
}
|
public int getDev_errcommcount() {
|
return dev_errcommcount;
|
}
|
public void setDev_errcommcount(int dev_errcommcount) {
|
this.dev_errcommcount = dev_errcommcount;
|
}
|
public int getDev_commcount() {
|
return dev_commcount;
|
}
|
public void setDev_commcount(int dev_commcount) {
|
this.dev_commcount = dev_commcount;
|
}
|
|
public String getDev_ip() {
|
return dev_ip;
|
}
|
public void setDev_ip(String dev_ip) {
|
this.dev_ip = dev_ip;
|
}
|
public PageBean getPageBean() {
|
return pageBean;
|
}
|
public void setPageBean(PageBean pageBean) {
|
this.pageBean = pageBean;
|
}
|
|
public int getTimelong() {
|
return timelong;
|
}
|
public void setTimelong(int timelong) {
|
this.timelong = timelong;
|
}
|
|
@Override
|
public String toString() {
|
return "BTS_61850_state{" +
|
"num=" + num +
|
", fbsDeviceId=" + fbsDeviceId +
|
", dev_ip='" + dev_ip + '\'' +
|
", stc_datatime=" + stc_datatime +
|
", stc_groupvol_low=" + stc_groupvol_low +
|
", stc_cap_high=" + stc_cap_high +
|
", stc_timespan_high=" + stc_timespan_high +
|
", stc_discurr=" + stc_discurr +
|
", stc_monvol_low=" + stc_monvol_low +
|
", stc_montmp_high=" + stc_montmp_high +
|
", stc_workstate=" + stc_workstate +
|
", alam_tmp=" + alam_tmp +
|
", alam_relay=" + alam_relay +
|
", alam_comm=" + alam_comm +
|
", dev_captest_online=" + dev_captest_online +
|
", dev_captest_groupvol=" + dev_captest_groupvol +
|
", timelong=" + timelong +
|
", dev_errcommcount=" + dev_errcommcount +
|
", dev_commcount=" + dev_commcount +
|
", pageBean=" + pageBean +
|
'}';
|
}
|
}
|