whycrzh
2021-01-26 8010e34a785c98db46bb8d604cc4a3952ffcf025
src/main/java/com/fgkj/dto/BTS_61850_setparam.java
@@ -8,7 +8,7 @@
@Alias("BTS_61850_setparam")
public class BTS_61850_setparam implements Serializable{
   private int num;
   private int FBSDeviceId;
   private int fbsDeviceId;
   @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "Asia/Shanghai")
   private Date set_time;
   private int batt_test;
@@ -25,12 +25,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 getSet_time() {
      return set_time;
   }
@@ -85,17 +88,21 @@
   public void setTestcmd(int testcmd) {
      this.testcmd = testcmd;
   }
   @Override
   public String toString() {
      return "BTS_61850_setparam [num=" + num + ", FBSDeviceId="
            + FBSDeviceId + ", set_time=" + set_time + ", batt_test="
            + batt_test + ", set_discurr=" + set_discurr + ", set_distime="
            + set_distime + ", set_discap=" + set_discap + ", set_tep_dis="
            + set_tep_dis + ", set_groupvol_low=" + set_groupvol_low
            + ", set_monvollow=" + set_monvollow + ", testcmd=" + testcmd
            + "]";
      return "BTS_61850_setparam{" +
            "num=" + num +
            ", fbsDeviceId=" + fbsDeviceId +
            ", set_time=" + set_time +
            ", batt_test=" + batt_test +
            ", set_discurr=" + set_discurr +
            ", set_distime=" + set_distime +
            ", set_discap=" + set_discap +
            ", set_tep_dis=" + set_tep_dis +
            ", set_groupvol_low=" + set_groupvol_low +
            ", set_monvollow=" + set_monvollow +
            ", testcmd=" + testcmd +
            '}';
   }
}