using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace IStation.Application
|
{
|
/// <summary>
|
///
|
/// </summary>
|
internal class ConfigHelper
|
{
|
#region 航天
|
|
/// <summary>
|
///
|
/// </summary>
|
public static long Smi_HangTian_CorpID
|
{
|
get
|
{
|
return Settings.Vibration.Smi.HangTian.CorpID;
|
}
|
}
|
|
/// <summary>
|
///
|
/// </summary>
|
public static long Smi_HangTian_ConfigureID
|
{
|
get
|
{
|
return Settings.Vibration.Smi.HangTian.ConfigureID;
|
}
|
}
|
|
/// <summary>
|
///
|
/// </summary>
|
public static bool Smi_HangTian_IsWriteLog
|
{
|
get
|
{
|
return Settings.Vibration.Smi.HangTian.IsWriteLog;
|
}
|
}
|
|
#endregion
|
|
#region 恩普特
|
|
/// <summary>
|
///
|
/// </summary>
|
public static long Smi_Expert_CorpID
|
{
|
get
|
{
|
return Settings.Vibration.Smi.Expert.CorpID;
|
}
|
}
|
|
/// <summary>
|
///
|
/// </summary>
|
public static long Smi_Expert_ConfigureID
|
{
|
get
|
{
|
return Settings.Vibration.Smi.Expert.ConfigureID;
|
}
|
}
|
|
/// <summary>
|
///
|
/// </summary>
|
public static bool Smi_Expert_IsWriteLog
|
{
|
get
|
{
|
return Settings.Vibration.Smi.Expert.IsWriteLog;
|
}
|
}
|
|
#endregion
|
|
#region 通道
|
|
/// <summary>
|
/// 数据对接通道名称
|
/// </summary>
|
public static string DataDockingQueueName
|
{
|
get { return Settings.Queue.DataDockingQueueName; }
|
}
|
|
#endregion
|
|
}
|
}
|