using ExportMap.Models; using System; using System.Collections.Generic; using System.Configuration; using System.Linq; using System.Web; namespace ExportMap.cs { public class SGUtils { /// /// Mpt目录 /// public static string MptPath { get { return ConfigurationManager.AppSettings["mptFolder"]; } } /// /// 3DML目录 /// public static string D3mlFolder { get { return ConfigurationManager.AppSettings["3dmlFolder"]; } } /// /// 廊坊数据目录 /// public static string LFData { get { return ConfigurationManager.AppSettings["lfData"]; } } /// /// SG的DB库 /// public static string SGDB { get { return ConfigurationManager.AppSettings["sgDB"]; } } /// /// 发布数据 /// /// XYZ参数 /// 行数 public static int Release(XYZArgs args) { return 0; } } }