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 a2e90f86998bf08675c205e09e7df55a8525220f..5aa7e496d078dcb79c7c1c36b5f25880f5e74920 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.STRING) + private String whenToSpecify; + @EntityField(name = "前置执行目标配置", type = ApiParamType.JSONOBJECT) private JSONObject preCondition; @@ -964,6 +967,14 @@ public class AutoexecJobVo extends BaseEditorVo implements Serializable { this.executeConfig = executeConfig; } + public String getWhenToSpecify() { + return whenToSpecify; + } + + public void setWhenToSpecify(String whenToSpecify) { + this.whenToSpecify = whenToSpecify; + } + public JSONObject getPreCondition() { return preCondition; }