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 817cc68e53d211b1e67924d9c804cb9171d24b3d..36d54bf4f1a7a1d09ec3b4479d25de990534e643 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 2218b9a4f35080e6a7812e924869180af4e7050a..c546ed57bc9340dfb5ae75f53066ca22b2b78f16 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);