wanshenmean
5 天以前 5171d3f59b89389bf75293afd210cfa6de4ccff7
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
34
35
36
37
38
39
40
41
42
43
44
namespace WIDESEA_Common.Constants
{
    /// <summary>
    /// 库存Remark路由标记常量
    /// </summary>
    public static class StockRemarkConstants
    {
        /// <summary>
        /// 高温1号路由标记
        /// </summary>
        public const string GW1 = "GW_1";
 
        /// <summary>
        /// 高温2号路由标记
        /// </summary>
        public const string GW2 = "GW_2";
 
        /// <summary>
        /// 常温1号路由标记
        /// </summary>
        public const string CW1 = "CW_1";
    }
 
    /// <summary>
    /// 出库时效常量(小时)
    /// </summary>
    public static class OutboundTimeConstants
    {
        /// <summary>
        /// GW_1首放入库时效(16小时)
        /// </summary>
        public const int OUTBOUND_HOURS_GW1_FIRST = 16;
 
        /// <summary>
        /// GW_1二放入库时效(24小时)
        /// </summary>
        public const int OUTBOUND_HOURS_GW1_SECOND = 24;
 
        /// <summary>
        /// CW_1出库时效(12小时)
        /// </summary>
        public const int OUTBOUND_HOURS_CW1 = 12;
    }
}