whycrzh
2021-01-26 1b48cb4e5a2a65e66912868b471b81c9dc0a6c82
src/main/java/com/fgkj/dto/User_task_change.java
@@ -15,7 +15,7 @@
   private Integer change_type_id;
   private Integer task_type_id;
   private Integer task_rc_num;
   private Integer BattgroupId;
   private Integer battgroupId;
   private String change_reason;
   private String old_executor_ids;
   @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "Asia/Shanghai")
@@ -83,12 +83,15 @@
   public void setTask_rc_num(Integer task_rc_num) {
      this.task_rc_num = task_rc_num;
   }
   public Integer getBattgroupId() {
      return BattgroupId;
      return battgroupId;
   }
   public void setBattgroupId(Integer battgroupId) {
      BattgroupId = battgroupId;
      this.battgroupId = battgroupId;
   }
   public String getChange_reason() {
      return change_reason;
   }
@@ -163,27 +166,31 @@
   public void setRemark(String remark) {
      this.remark = remark;
   }
   @Override
   public String toString() {
      return "User_task_change [num=" + num + ", usr_id=" + usr_id
            + ", master_id=" + master_id + ", appoint_uid=" + appoint_uid
            + ", copy_uids=" + copy_uids + ", change_type_id="
            + change_type_id + ", task_type_id=" + task_type_id
            + ", task_rc_num=" + task_rc_num + ", BattgroupId="
            + BattgroupId + ", change_reason=" + change_reason
            + ", old_executor_ids=" + old_executor_ids
            + ", old_task_exe_time=" + old_task_exe_time
            + ", new_executor_ids=" + new_executor_ids
            + ", new_task_exe_time=" + new_task_exe_time
            + ", change_ask_time=" + change_ask_time
            + ", change_ask_time1=" + change_ask_time1
            + ", change_ask_time_limit=" + change_ask_time_limit
            + ", task_change_approve_time=" + task_change_approve_time
            + ", task_change_approve_time1=" + task_change_approve_time1
            + ", task_change_approve_res=" + task_change_approve_res
            + ", remark=" + remark + "]";
      return "User_task_change{" +
            "num=" + num +
            ", usr_id=" + usr_id +
            ", master_id=" + master_id +
            ", appoint_uid=" + appoint_uid +
            ", copy_uids='" + copy_uids + '\'' +
            ", change_type_id=" + change_type_id +
            ", task_type_id=" + task_type_id +
            ", task_rc_num=" + task_rc_num +
            ", battgroupId=" + battgroupId +
            ", change_reason='" + change_reason + '\'' +
            ", old_executor_ids='" + old_executor_ids + '\'' +
            ", old_task_exe_time=" + old_task_exe_time +
            ", new_executor_ids='" + new_executor_ids + '\'' +
            ", new_task_exe_time=" + new_task_exe_time +
            ", change_ask_time=" + change_ask_time +
            ", change_ask_time1=" + change_ask_time1 +
            ", change_ask_time_limit=" + change_ask_time_limit +
            ", task_change_approve_time=" + task_change_approve_time +
            ", task_change_approve_time1=" + task_change_approve_time1 +
            ", task_change_approve_res=" + task_change_approve_res +
            ", remark='" + remark + '\'' +
            '}';
   }
}