预留服务范围改为 25-57

This commit is contained in:
2026-01-21 11:06:52 +08:00
parent 9f3d41785e
commit 713a36b383
6 changed files with 65 additions and 46 deletions

View File

@@ -50,7 +50,7 @@ Public Class ServiceAttribute
For Each node In G_hostNode.Nodes
fustr = "服务-" & node.LoopAddr
'2025 12 29 CZH 增加 判断服务是否是 是在25 到48 且名称符合 "服务-服务号"的格式 符合则不 添加
If node.LoopAddr >= 25 AndAlso node.LoopAddr <= 48 AndAlso fustr.Equals(node.Name) Then '
If node.LoopAddr >= 25 AndAlso node.LoopAddr <= 57 AndAlso fustr.Equals(node.Name) Then '
Continue For
End If
Dic_1.Add($"{node.LoopAddr}:{node.Name }")