namespace WIDESEA_Common.Constants
{
///
/// 任务地址常量
///
public static class TaskAddressConstants
{
///
/// 默认/中转地址
///
public const string DEFAULT_ADDRESS = "10080";
///
/// 高温1号出库地址列表(轮询)
///
public static readonly string[] GW1_ADDRESSES = { "11001", "11010" };
///
/// 高温2号出库地址
///
public const string GW2_ADDRESS = "CWSC1";
///
/// 常温1号出库地址
///
public const string CW1_ADDRESS = "22001";
///
/// 分容库出库地址
///
public const string GRADING_OUTBOUND_ADDRESS = "10081";
}
}