diff --git a/src/main/java/neatlogic/framework/autoexec/dao/mapper/AutoexecScheduleMapper.xml b/src/main/java/neatlogic/framework/autoexec/dao/mapper/AutoexecScheduleMapper.xml
index eeff1feedfc93f09d25b788c9e5e75373a41ce39..27ac27efec426a7d4467a54a4c6d4484bc8d08e7 100644
--- a/src/main/java/neatlogic/framework/autoexec/dao/mapper/AutoexecScheduleMapper.xml
+++ b/src/main/java/neatlogic/framework/autoexec/dao/mapper/AutoexecScheduleMapper.xml
@@ -98,8 +98,8 @@ along with this program. If not, see .-->
-
-
+
+
diff --git a/src/main/java/neatlogic/framework/autoexec/dto/schedule/AutoexecScheduleVo.java b/src/main/java/neatlogic/framework/autoexec/dto/schedule/AutoexecScheduleVo.java
index 86cf6d62997748ac3475996adc04f57200859d0d..5af99d057aa30c661766185359c2ccf487a5bb5e 100644
--- a/src/main/java/neatlogic/framework/autoexec/dto/schedule/AutoexecScheduleVo.java
+++ b/src/main/java/neatlogic/framework/autoexec/dto/schedule/AutoexecScheduleVo.java
@@ -62,6 +62,8 @@ public class AutoexecScheduleVo extends BaseEditorVo {
private Integer editable;
@EntityField(name = "是否可删除", type = ApiParamType.INTEGER)
private Integer deletable;
+ @EntityField(name = "是否已加载", type = ApiParamType.INTEGER)
+ private Integer isLoad;
@EntityField(name = "执行情况", type = ApiParamType.JSONOBJECT)
private JobStatusVo jobStatus;
@@ -192,6 +194,14 @@ public class AutoexecScheduleVo extends BaseEditorVo {
this.deletable = deletable;
}
+ public Integer getIsLoad() {
+ return isLoad;
+ }
+
+ public void setIsLoad(Integer isLoad) {
+ this.isLoad = isLoad;
+ }
+
public JobStatusVo getJobStatus() {
return jobStatus;
}