From 9e38dbd53200c02b248002e4479d2f06b85e9491 Mon Sep 17 00:00:00 2001 From: "1437892690@qq.com" <1437892690@qq.com> Date: Wed, 11 Jun 2025 19:08:00 +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 --- .../deploy/dto/schedule/DeployScheduleVo.java | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/src/main/java/neatlogic/framework/deploy/dto/schedule/DeployScheduleVo.java b/src/main/java/neatlogic/framework/deploy/dto/schedule/DeployScheduleVo.java index 3e131b0..58af81d 100644 --- a/src/main/java/neatlogic/framework/deploy/dto/schedule/DeployScheduleVo.java +++ b/src/main/java/neatlogic/framework/deploy/dto/schedule/DeployScheduleVo.java @@ -21,6 +21,7 @@ import neatlogic.framework.common.constvalue.ApiParamType; import neatlogic.framework.common.dto.BaseEditorVo; import neatlogic.framework.deploy.constvalue.ScheduleType; import neatlogic.framework.restful.annotation.EntityField; +import neatlogic.framework.scheduler.dto.JobStatusVo; import neatlogic.framework.util.SnowflakeUtil; import org.apache.commons.lang3.StringUtils; @@ -75,6 +76,10 @@ public class DeployScheduleVo extends BaseEditorVo { private Integer editable = 0; @EntityField(name = "是否可删除", type = ApiParamType.INTEGER) private Integer deletable = 0; + @EntityField(name = "是否已加载", type = ApiParamType.INTEGER) + private Integer isLoad; + + private JobStatusVo jobStatus; public Long getId() { if (id == null) { @@ -277,4 +282,20 @@ public class DeployScheduleVo extends BaseEditorVo { public void setDeletable(Integer deletable) { this.deletable = deletable; } + + public Integer getIsLoad() { + return isLoad; + } + + public void setIsLoad(Integer isLoad) { + this.isLoad = isLoad; + } + + public JobStatusVo getJobStatus() { + return jobStatus; + } + + public void setJobStatus(JobStatusVo jobStatus) { + this.jobStatus = jobStatus; + } } -- Gitee