|
|
@@ -1,11 +1,13 @@
|
|
|
package com.mokamrp.privates.mapper.pangu.pojo;
|
|
|
|
|
|
-import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
-import com.baomidou.mybatisplus.extension.activerecord.Model;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
-import java.time.LocalDateTime;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import com.baomidou.mybatisplus.extension.activerecord.Model;
|
|
|
+
|
|
|
import java.io.Serializable;
|
|
|
+import java.time.LocalDateTime;
|
|
|
|
|
|
/**
|
|
|
* <p>
|
|
|
@@ -23,7 +25,7 @@ public class FosterwxCashScheduleTaskList extends Model<FosterwxCashScheduleTask
|
|
|
/**
|
|
|
* id
|
|
|
*/
|
|
|
- @TableId(value = "id", type = IdType.AUTO)
|
|
|
+ @TableId(value = "id", type = IdType.AUTO)
|
|
|
private Integer id;
|
|
|
|
|
|
/**
|
|
|
@@ -37,6 +39,11 @@ public class FosterwxCashScheduleTaskList extends Model<FosterwxCashScheduleTask
|
|
|
private Integer templateId;
|
|
|
|
|
|
/**
|
|
|
+ * 任务id
|
|
|
+ */
|
|
|
+ private Integer taskId;
|
|
|
+
|
|
|
+ /**
|
|
|
* 组别id
|
|
|
*/
|
|
|
private Integer groupId;
|
|
|
@@ -107,6 +114,9 @@ public class FosterwxCashScheduleTaskList extends Model<FosterwxCashScheduleTask
|
|
|
*/
|
|
|
private LocalDateTime updateAt;
|
|
|
|
|
|
+ @TableField(exist = false)
|
|
|
+ private FosterwxCashTaskList fosterwxCashTaskList;
|
|
|
+
|
|
|
|
|
|
public Integer getId() {
|
|
|
return id;
|
|
|
@@ -132,6 +142,14 @@ public class FosterwxCashScheduleTaskList extends Model<FosterwxCashScheduleTask
|
|
|
this.templateId = templateId;
|
|
|
}
|
|
|
|
|
|
+ public Integer getTaskId() {
|
|
|
+ return taskId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTaskId(Integer taskId) {
|
|
|
+ this.taskId = taskId;
|
|
|
+ }
|
|
|
+
|
|
|
public Integer getGroupId() {
|
|
|
return groupId;
|
|
|
}
|
|
|
@@ -244,6 +262,15 @@ public class FosterwxCashScheduleTaskList extends Model<FosterwxCashScheduleTask
|
|
|
this.updateAt = updateAt;
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+ public FosterwxCashTaskList getFosterwxCashTaskList() {
|
|
|
+ return fosterwxCashTaskList;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFosterwxCashTaskList(FosterwxCashTaskList fosterwxCashTaskList) {
|
|
|
+ this.fosterwxCashTaskList = fosterwxCashTaskList;
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
protected Serializable pkVal() {
|
|
|
return this.id;
|
|
|
@@ -252,23 +279,24 @@ public class FosterwxCashScheduleTaskList extends Model<FosterwxCashScheduleTask
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
return "FosterwxCashScheduleTaskList{" +
|
|
|
- "id=" + id +
|
|
|
- ", scheduleId=" + scheduleId +
|
|
|
- ", templateId=" + templateId +
|
|
|
- ", groupId=" + groupId +
|
|
|
- ", taskType=" + taskType +
|
|
|
- ", remark=" + remark +
|
|
|
- ", taskContent=" + taskContent +
|
|
|
- ", ghId=" + ghId +
|
|
|
- ", status=" + status +
|
|
|
- ", type=" + type +
|
|
|
- ", errInfo=" + errInfo +
|
|
|
- ", sendTime=" + sendTime +
|
|
|
- ", createUid=" + createUid +
|
|
|
- ", createUser=" + createUser +
|
|
|
- ", updateUid=" + updateUid +
|
|
|
- ", createAt=" + createAt +
|
|
|
- ", updateAt=" + updateAt +
|
|
|
- "}";
|
|
|
+ "id=" + id +
|
|
|
+ ", scheduleId=" + scheduleId +
|
|
|
+ ", templateId=" + templateId +
|
|
|
+ ", taskId=" + taskId +
|
|
|
+ ", groupId=" + groupId +
|
|
|
+ ", taskType=" + taskType +
|
|
|
+ ", remark=" + remark +
|
|
|
+ ", taskContent=" + taskContent +
|
|
|
+ ", ghId=" + ghId +
|
|
|
+ ", status=" + status +
|
|
|
+ ", type=" + type +
|
|
|
+ ", errInfo=" + errInfo +
|
|
|
+ ", sendTime=" + sendTime +
|
|
|
+ ", createUid=" + createUid +
|
|
|
+ ", createUser=" + createUser +
|
|
|
+ ", updateUid=" + updateUid +
|
|
|
+ ", createAt=" + createAt +
|
|
|
+ ", updateAt=" + updateAt +
|
|
|
+ "}";
|
|
|
}
|
|
|
}
|