From b215735f76f8dca514b1befd68ff183757f4dd12 Mon Sep 17 00:00:00 2001 From: DELL <1525436766@qq.com> Date: 星期二, 24 六月 2025 17:49:26 +0800 Subject: [PATCH] V6.110 edit by lijun @ 2025-06-24 1.新增单体漏液信息读取 2.同步window或linux系统超时配置 --- iec61850_forFoShanAES_Model/src/org/openmuc/openiec61850/ClientAssociation.java | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/iec61850_forFoShanAES_Model/src/org/openmuc/openiec61850/ClientAssociation.java b/iec61850_forFoShanAES_Model/src/org/openmuc/openiec61850/ClientAssociation.java index ccefa57..4fc38e9 100644 --- a/iec61850_forFoShanAES_Model/src/org/openmuc/openiec61850/ClientAssociation.java +++ b/iec61850_forFoShanAES_Model/src/org/openmuc/openiec61850/ClientAssociation.java @@ -709,10 +709,11 @@ //System.out.println("List<String> ldNames = retrieveLogicalDevices();"); for (int i = 0; i < ldNames.size(); i++) { lnNames.add(retrieveLogicalNodeNames(ldNames.get(i))); - //System.out.println(ldNames.get(i)); + System.out.println(ldNames.get(i)); } List<LogicalDevice> lds = new ArrayList<>(); for (int i = 0; i < ldNames.size(); i++) { + System.out.println(ldNames.get(i)); List<LogicalNode> lns = new ArrayList<>(); for (int j = 0; j < lnNames.get(i).size(); j++) { lns.add(retrieveDataDefinitions(new ObjectReference(ldNames.get(i) + "/" + lnNames.get(i).get(j)))); -- Gitblit v1.9.1