From 37a9a1c20eb6b23dcead842fd2d9674a1ac77776 Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期四, 04 五月 2023 15:18:24 +0800 Subject: [PATCH] 1 --- ExportMap/cs/SGUtils.cs | 28 ++++++++++++++-------------- 1 files changed, 14 insertions(+), 14 deletions(-) diff --git a/ExportMap/cs/SGUtils.cs b/ExportMap/cs/SGUtils.cs index ecb5f57..b273e62 100644 --- a/ExportMap/cs/SGUtils.cs +++ b/ExportMap/cs/SGUtils.cs @@ -191,21 +191,21 @@ /// </summary> private static SysPublish NewPublish(SysMeta meta, XYZArgs args) { - SysPublish sp = new SysPublish(); - sp.name = meta.name; - sp.url = GetReleaseUrl(meta, meta.verid); - sp.type = meta.type; - sp.status = 3; - sp.dirid = meta.dircode; - sp.depid = args.depcode; - sp.min = 0; - sp.max = 0; - sp.json = null; - sp.create_user = args.userId; - sp.geom = null; - sp.bak = null; + SysPublish sys = new SysPublish(); + sys.name = meta.name; + sys.url = GetReleaseUrl(meta, meta.verid); + sys.type = meta.type; + sys.status = 3; + sys.dirid = meta.dircode; + sys.depid = args.depcode; + sys.min = 0; + sys.max = 0; + sys.json = null; + sys.create_user = args.userId; + sys.geom = null; + sys.bak = null; - return sp; + return sys; } /// <summary> -- Gitblit v1.9.3