From fc1028d3d9613e0532c8d5e0472aff391c0ff772 Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期五, 04 八月 2023 09:24:11 +0800 Subject: [PATCH] 1 --- ExportMap/cs/SGUtils.cs | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/ExportMap/cs/SGUtils.cs b/ExportMap/cs/SGUtils.cs index 0a7f67f..7d1d6f2 100644 --- a/ExportMap/cs/SGUtils.cs +++ b/ExportMap/cs/SGUtils.cs @@ -113,6 +113,15 @@ /// </summary> private SysTask CreateTask(XYZArgs args, List<SysMeta> list) { + args.name = list[0].name; + for (int i = 1; i < list.Count; i++) + { + string name =args.name+ "," + list[i].name; + if (name.Length > 100) break; + + args.name = name; + } + switch (list[0].type) { case "3dml": -- Gitblit v1.9.3