wanshenmean
5 天以前 682413a01effa5ae936e418fecdfd72f670d09ab
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
namespace WIDESEA_Common.Constants
{
    /// <summary>
    /// 任务地址常量
    /// </summary>
    public static class TaskAddressConstants
    {
        /// <summary>
        /// 默认/中转地址
        /// </summary>
        public const string DEFAULT_ADDRESS = "10080";
 
        /// <summary>
        /// 高温1号出库地址列表(轮询)
        /// </summary>
        public static readonly string[] GW1_ADDRESSES = { "11001", "11010" };
 
        /// <summary>
        /// 高温2号出库地址
        /// </summary>
        public const string GW2_ADDRESS = "CWSC1";
 
        /// <summary>
        /// 常温1号出库地址
        /// </summary>
        public const string CW1_ADDRESS = "22001";
 
        /// <summary>
        /// 分容库出库地址
        /// </summary>
        public const string GRADING_OUTBOUND_ADDRESS = "10081";
    }
}