whycrzh
2021-01-26 8010e34a785c98db46bb8d604cc4a3952ffcf025
src/main/java/com/fgkj/dto/BTS_61850_state.java
@@ -8,7 +8,7 @@
@Alias("BTS_61850_state")
public class BTS_61850_state implements Serializable{
   private int num;
   private int FBSDeviceId;
   private int fbsDeviceId;
   private String dev_ip;
   @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "Asia/Shanghai")
   private Date stc_datatime;
@@ -34,12 +34,15 @@
   public void setNum(int num) {
      this.num = num;
   }
   public int getFBSDeviceId() {
      return FBSDeviceId;
   public int getFbsDeviceId() {
      return fbsDeviceId;
   }
   public void setFBSDeviceId(int fBSDeviceId) {
      FBSDeviceId = fBSDeviceId;
   public void setFbsDeviceId(int fbsDeviceId) {
      this.fbsDeviceId = fbsDeviceId;
   }
   public Date getStc_datatime() {
      return stc_datatime;
   }
@@ -150,22 +153,30 @@
   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
            + ", page=" + pageBean + "]";
      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 +
            '}';
   }
}