diff --git a/src/main/java/neatlogic/framework/autoexec/dto/job/AutoexecJobVo.java b/src/main/java/neatlogic/framework/autoexec/dto/job/AutoexecJobVo.java index efcf06ee36013b7695902f0aa7dff456c2fd4795..a2e90f86998bf08675c205e09e7df55a8525220f 100644 --- a/src/main/java/neatlogic/framework/autoexec/dto/job/AutoexecJobVo.java +++ b/src/main/java/neatlogic/framework/autoexec/dto/job/AutoexecJobVo.java @@ -229,6 +229,9 @@ public class AutoexecJobVo extends BaseEditorVo implements Serializable { @EntityField(name = "作业执行参数", type = ApiParamType.JSONOBJECT) private AutoexecCombopExecuteConfigVo executeConfig; + @EntityField(name = "前置执行目标配置", type = ApiParamType.JSONOBJECT) + private JSONObject preCondition; + @EntityField(name = "子作业列表", type = ApiParamType.JSONARRAY) private List children; @@ -961,6 +964,14 @@ public class AutoexecJobVo extends BaseEditorVo implements Serializable { this.executeConfig = executeConfig; } + public JSONObject getPreCondition() { + return preCondition; + } + + public void setPreCondition(JSONObject preCondition) { + this.preCondition = preCondition; + } + public void setCombopId(Long combopId) { this.operationId = combopId; }