From 64f558753d66074a6901a26491221f7da72d06a2 Mon Sep 17 00:00:00 2001 From: "1437892690@qq.com" <1437892690@qq.com> Date: Tue, 17 Jun 2025 11:00:40 +0800 Subject: [PATCH] =?UTF-8?q?[=E5=8A=9F=E8=83=BD]=20=E8=87=AA=E5=8A=A8?= =?UTF-8?q?=E5=8C=96=E7=BB=84=E5=90=88=E5=B7=A5=E5=85=B7=E6=A0=A1=E9=AA=8C?= =?UTF-8?q?=E6=89=8B=E5=8A=A8=E8=BE=93=E5=85=A5=E8=8A=82=E7=82=B9=E6=80=A7?= =?UTF-8?q?=E8=83=BD=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 关联 #[1444946337300480]自动化组合工具校验手动输入节点性能优化 http://192.168.0.96:8090/demo/rdm.html#/story-detail/939050947543040/939050947543042/1444946337300480 --- .../cmdb/dto/resourcecenter/ResourceSearchVo.java | 10 ++++++++++ 1 file changed, 10 insertions(+) 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 51597bb..14db223 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; + } } -- Gitee