From b61d1208a5a004ad22bd38fffdfb18c62a211573 Mon Sep 17 00:00:00 2001 From: "1437892690@qq.com" <1437892690@qq.com> Date: Wed, 11 Jun 2025 19:10:25 +0800 Subject: [PATCH] =?UTF-8?q?[=E5=8A=9F=E8=83=BD]=20=E5=AE=9A=E6=97=B6?= =?UTF-8?q?=E4=BD=9C=E4=B8=9A=E7=AE=A1=E7=90=86=E9=A1=B5=E5=A2=9E=E5=8A=A0?= =?UTF-8?q?=E4=B8=80=E5=88=97=E6=98=BE=E7=A4=BA=E4=BD=9C=E4=B8=9A=E6=98=AF?= =?UTF-8?q?=E5=90=A6=E5=B7=B2=E5=8A=A0=E8=BD=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 关联 #[1441426846482432]定时作业管理页增加一列显示作业是否已加载 http://192.168.0.96:8090/demo/rdm.html#/story-detail/939050947543040/939050947543042/1441426846482432 --- .../autoexec/dao/mapper/AutoexecScheduleMapper.xml | 4 ++-- .../autoexec/dto/schedule/AutoexecScheduleVo.java | 10 ++++++++++ 2 files changed, 12 insertions(+), 2 deletions(-) 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 eeff1fee..27ac27ef 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 86cf6d62..5af99d05 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; } -- Gitee