From bf0010e3cc179849f9094a56d16ebbbd4c1ea040 Mon Sep 17 00:00:00 2001 From: "1437892690@qq.com" <1437892690@qq.com> Date: Fri, 1 Aug 2025 16:06:16 +0800 Subject: [PATCH] =?UTF-8?q?[=E4=BF=AE=E5=A4=8D]=20=E5=90=8E=E7=AB=AF-?= =?UTF-8?q?=E7=BB=84=E5=90=88=E5=B7=A5=E5=85=B7=E5=88=9B=E5=BB=BA=E4=BD=9C?= =?UTF-8?q?=E4=B8=9A=E9=A1=B5=E9=9D=A2=E5=A6=82=E6=9E=9C=E6=89=80=E6=9C=89?= =?UTF-8?q?runner=E9=98=B6=E6=AE=B5=E9=83=BD=E8=AE=BE=E7=BD=AE=E4=BA=86?= =?UTF-8?q?=E6=89=A7=E8=A1=8C=E5=99=A8=E7=BB=84=EF=BC=8C=E5=88=99=E5=88=9B?= =?UTF-8?q?=E5=BB=BA=E4=BD=9C=E4=B8=9A=E7=9A=84=E6=97=B6=E5=80=99=E6=97=A0?= =?UTF-8?q?=E9=9C=80=E8=AE=BE=E7=BD=AE=E6=89=A7=E8=A1=8C=E5=99=A8=E7=BB=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 关联 #[1478301363699712]后端-组合工具创建作业页面如果所有runner阶段都设置了执行器组,则创建作业的时候无需设置执行器组 http://192.168.0.96:8090/demo/rdm.html#/task-detail/939050947543040/939050947543050/1478301363699712 --- .../autoexec/dto/combop/AutoexecCombopVersionVo.java | 10 ++++++++++ .../autoexec/dto/combop/AutoexecCombopVo.java | 10 ++++++++++ 2 files changed, 20 insertions(+) diff --git a/src/main/java/neatlogic/framework/autoexec/dto/combop/AutoexecCombopVersionVo.java b/src/main/java/neatlogic/framework/autoexec/dto/combop/AutoexecCombopVersionVo.java index 817cc68e..36d54bf4 100644 --- a/src/main/java/neatlogic/framework/autoexec/dto/combop/AutoexecCombopVersionVo.java +++ b/src/main/java/neatlogic/framework/autoexec/dto/combop/AutoexecCombopVersionVo.java @@ -38,6 +38,8 @@ public class AutoexecCombopVersionVo extends BaseEditorVo { private boolean needExecuteNode = false; @EntityField(name = "term.autoexec.needroundcount", type = ApiParamType.BOOLEAN) private boolean needRoundCount = false; + @EntityField(name = "term.autoexec.needrunnergroup", type = ApiParamType.BOOLEAN) + private boolean needRunnerGroup = false; @EntityField(name = "term.autoexec.allphasesarerunnerorsqlexecmode", type = ApiParamType.BOOLEAN) private Boolean allPhasesAreRunnerOrSqlExecMode; @EntityField(name = "term.autoexec.existrunnerorsqlexecmode", type = ApiParamType.BOOLEAN) @@ -176,6 +178,14 @@ public class AutoexecCombopVersionVo extends BaseEditorVo { this.needRoundCount = needRoundCount; } + public boolean getNeedRunnerGroup() { + return needRunnerGroup; + } + + public void setNeedRunnerGroup(boolean needRunnerGroup) { + this.needRunnerGroup = needRunnerGroup; + } + public Boolean getAllPhasesAreRunnerOrSqlExecMode() { return allPhasesAreRunnerOrSqlExecMode; } diff --git a/src/main/java/neatlogic/framework/autoexec/dto/combop/AutoexecCombopVo.java b/src/main/java/neatlogic/framework/autoexec/dto/combop/AutoexecCombopVo.java index 2218b9a4..c546ed57 100644 --- a/src/main/java/neatlogic/framework/autoexec/dto/combop/AutoexecCombopVo.java +++ b/src/main/java/neatlogic/framework/autoexec/dto/combop/AutoexecCombopVo.java @@ -82,6 +82,8 @@ public class AutoexecCombopVo extends BaseEditorVo implements Serializable { private boolean needExecuteNode = false; @EntityField(name = "term.autoexec.needroundcount", type = ApiParamType.BOOLEAN) private boolean needRoundCount = false; + @EntityField(name = "term.autoexec.needrunnergroup", type = ApiParamType.BOOLEAN) + private boolean needRunnerGroup = false; @EntityField(name = "common.versioncount", type = ApiParamType.INTEGER) private Integer versionCount; @EntityField(name = "common.viewauthoritylist", type = ApiParamType.JSONARRAY) @@ -295,6 +297,14 @@ public class AutoexecCombopVo extends BaseEditorVo implements Serializable { this.needRoundCount = needRoundCount; } + public boolean getNeedRunnerGroup() { + return needRunnerGroup; + } + + public void setNeedRunnerGroup(boolean needRunnerGroup) { + this.needRunnerGroup = needRunnerGroup; + } + public String getConfigStr() { if (configStr == null && config != null) { configStr = JSONObject.toJSONString(config); -- Gitee