diff --git a/src/main/java/neatlogic/framework/autoexec/dto/service/AutoexecServiceConfigVo.java b/src/main/java/neatlogic/framework/autoexec/dto/service/AutoexecServiceConfigVo.java index f248d522469c302ba268f8d8b42b12f3edb06d43..faa8e38b07c09579e7e9b1435fa3aaa2be7c04ef 100644 --- a/src/main/java/neatlogic/framework/autoexec/dto/service/AutoexecServiceConfigVo.java +++ b/src/main/java/neatlogic/framework/autoexec/dto/service/AutoexecServiceConfigVo.java @@ -15,6 +15,7 @@ along with this program. If not, see .*/ package neatlogic.framework.autoexec.dto.service; +import com.alibaba.fastjson.JSONObject; import neatlogic.framework.autoexec.dto.combop.ParamMappingVo; import java.io.Serializable; @@ -42,6 +43,8 @@ public class AutoexecServiceConfigVo implements Serializable { private List runtimeParamList; + private JSONObject preCondition; + public Long getScenarioId() { return scenarioId; } @@ -121,4 +124,12 @@ public class AutoexecServiceConfigVo implements Serializable { public void setParallelPolicy(ParamMappingVo parallelPolicy) { this.parallelPolicy = parallelPolicy; } + + public JSONObject getPreCondition() { + return preCondition; + } + + public void setPreCondition(JSONObject preCondition) { + this.preCondition = preCondition; + } }