using System;
|
using System.Collections.Generic;
|
using System.Configuration;
|
using System.Linq;
|
using System.Web;
|
|
namespace ExportMap.cs
|
{
|
public class SGUtil
|
{
|
/// <summary>
|
/// Mpt目录
|
/// </summary>
|
public static string MptPath
|
{
|
get
|
{
|
return ConfigurationManager.AppSettings["mptFolder"];
|
}
|
}
|
|
/// <summary>
|
/// 3DML目录
|
/// </summary>
|
public static string D3mlFolder
|
{
|
get
|
{
|
return ConfigurationManager.AppSettings["3dmlFolder"];
|
}
|
}
|
|
/// <summary>
|
/// 廊坊数据目录
|
/// </summary>
|
public static string LFData
|
{
|
get
|
{
|
return ConfigurationManager.AppSettings["lfData"];
|
}
|
}
|
|
/// <summary>
|
/// SG的DB库
|
/// </summary>
|
public static string SGDB
|
{
|
get
|
{
|
return ConfigurationManager.AppSettings["sgDB"];
|
}
|
}
|
}
|
}
|