whycrzh
2021-01-26 850831885dfd3e617517b216f0d4752a6e791bcd
src/main/java/com/fgkj/dto/User_task_batt_test.java
@@ -11,7 +11,7 @@
   private Integer num;
   private Integer task_id;
   private String task_usr_ids;
   private Integer BattGroupId;
   private Integer battGroupId;
   private Integer task_enabled;
   @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "Asia/Shanghai")
   private Date task_exe_date;
@@ -57,12 +57,15 @@
   public void setTask_usr_ids(String task_usr_ids) {
      this.task_usr_ids = task_usr_ids;
   }
   public Integer getBattGroupId() {
      return BattGroupId;
      return battGroupId;
   }
   public void setBattGroupId(Integer battGroupId) {
      BattGroupId = battGroupId;
      this.battGroupId = battGroupId;
   }
   public Integer getTask_enabled() {
      return task_enabled;
   }
@@ -148,24 +151,28 @@
   public void setNote(String note) {
      this.note = note;
   }
   @Override
   public String toString() {
      return "User_task_batt_test [num=" + num + ", task_id=" + task_id
            + ", task_usr_ids=" + task_usr_ids + ", BattGroupId="
            + BattGroupId + ", task_enabled=" + task_enabled
            + ", task_exe_date=" + task_exe_date + ", task_exe_date1="
            + task_exe_date1 + ", task_close_date=" + task_close_date
            + ", task_notice_starttime=" + task_notice_starttime
            + ", task_notice_endtime=" + task_notice_endtime
            + ", task_notice_count=" + task_notice_count
            + ", task_notice_latesttime=" + task_notice_latesttime
            + ", task_notice_master=" + task_notice_master
            + ", test_complete=" + test_complete + ", test_completetime="
            + test_completetime + ", test_starttime=" + test_starttime
            + ", test_record_count_id=" + test_record_count_id + ", note="
            + note + "]";
      return "User_task_batt_test{" +
            "num=" + num +
            ", task_id=" + task_id +
            ", task_usr_ids='" + task_usr_ids + '\'' +
            ", battGroupId=" + battGroupId +
            ", task_enabled=" + task_enabled +
            ", task_exe_date=" + task_exe_date +
            ", task_exe_date1=" + task_exe_date1 +
            ", task_close_date=" + task_close_date +
            ", task_notice_starttime=" + task_notice_starttime +
            ", task_notice_endtime=" + task_notice_endtime +
            ", task_notice_count=" + task_notice_count +
            ", task_notice_latesttime=" + task_notice_latesttime +
            ", task_notice_master=" + task_notice_master +
            ", test_complete=" + test_complete +
            ", test_completetime=" + test_completetime +
            ", test_starttime=" + test_starttime +
            ", test_record_count_id=" + test_record_count_id +
            ", note='" + note + '\'' +
            '}';
   }
}