update
This commit is contained in:
@@ -7,6 +7,7 @@ import lombok.Data;
|
||||
import lombok.experimental.Accessors;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
@@ -63,4 +64,9 @@ public class ScheduleJobEntity implements Serializable {
|
||||
* 状态(1运行 0暂停)
|
||||
*/
|
||||
private String status;
|
||||
|
||||
/**
|
||||
* 最后完成时间
|
||||
*/
|
||||
private Date afterDate;
|
||||
}
|
||||
|
||||
@@ -3,6 +3,7 @@ package cn.datax.service.data.quality.api.vo;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
@@ -20,8 +21,10 @@ public class ScheduleJobVo implements Serializable {
|
||||
private String id;
|
||||
private String status;
|
||||
private String jobName;
|
||||
private String jobType;
|
||||
private String beanName;
|
||||
private String methodName;
|
||||
private String methodParams;
|
||||
private String cronExpression;
|
||||
private Date afterDate; // 最后完成时间
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user