管道基础大数据平台系统开发-【CS】-ExportMap
1
13693261870
2023-06-13 e2178936d1394861c5439c9170cb28c8606237a6
1
已修改2个文件
5 ■■■■■ 文件已修改
ExportMap/cs/TerraUtils.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
ExportMap/db/PubDBHelper.cs 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ExportMap/cs/TerraUtils.cs
@@ -116,7 +116,7 @@
            }
            catch (Exception ex)
            {
                LogOut.Error(ex.Message);
                LogOut.Error(ex.Message + "\r\n" + ex.StackTrace);
                err = ex.Message;
                return null;
            }
ExportMap/db/PubDBHelper.cs
@@ -84,7 +84,8 @@
        {
            int pid = SelectLayerPid(sys, meta);
            //string cnName = meta.name.Split(new char[] { '.' })[0];
            string cnName = meta.name.Substring(0, meta.name.LastIndexOf("."));
            int idx = meta.name.LastIndexOf(".");
            string cnName = idx == -1 ? meta.name : meta.name.Substring(0, meta.name.LastIndexOf("."));
            string data = getData(meta);
            string serve = getServe(meta);