diff --git a/src/main/java/neatlogic/framework/cmdb/dto/resourcecenter/ResourceSearchVo.java b/src/main/java/neatlogic/framework/cmdb/dto/resourcecenter/ResourceSearchVo.java index 51597bbfb422eaa6a37e53a62e5f345634ff1c28..14db2233e066e7587d86052418b2f438b39e3184 100644 --- a/src/main/java/neatlogic/framework/cmdb/dto/resourcecenter/ResourceSearchVo.java +++ b/src/main/java/neatlogic/framework/cmdb/dto/resourcecenter/ResourceSearchVo.java @@ -109,6 +109,8 @@ public class ResourceSearchVo extends ConditionConfigVo { private Long nameFieldAttrId; @EntityField(name = "视图名称", type = ApiParamType.STRING) private String viewName; + @EntityField(name = "输入节点列表", type = ApiParamType.JSONARRAY) + private List inputNodeList; public ResourceSearchVo() { } @@ -452,4 +454,12 @@ public class ResourceSearchVo extends ConditionConfigVo { public void setViewName(String viewName) { this.viewName = viewName; } + + public List getInputNodeList() { + return inputNodeList; + } + + public void setInputNodeList(List inputNodeList) { + this.inputNodeList = inputNodeList; + } }