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 5af99d057aa30c661766185359c2ccf487a5bb5e..86cf6d62997748ac3475996adc04f57200859d0d 100644 --- a/src/main/java/neatlogic/framework/autoexec/dto/schedule/AutoexecScheduleVo.java +++ b/src/main/java/neatlogic/framework/autoexec/dto/schedule/AutoexecScheduleVo.java @@ -62,8 +62,6 @@ 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; @@ -194,14 +192,6 @@ 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; }