jt
2021-06-10 5d0d028456874576560552f5a5c4e8b801786f11
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/********************************************************************************
 
** auth: DBS
 
** date: 2018/12/11 16:58:28
 
** desc: 尚未编写描述
 
** Ver.:  V1.0.0
 
*********************************************************************************/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using HH.WMS.Entitys.Sys;
using HH.WMS.Entitys.Func;
 
namespace HH.WMS.Client.Common
{
    public static class StaticUtil
    {
        public static UserExt User = new UserExt();
 
        public static string ServiceUrl = string.Empty;
 
        public static string AppCode = string.Empty;
 
        public static string TokenId = string.Empty;
 
        public static string Ip = string.Empty;
 
        public static string Mac = string.Empty;
 
        public static string StockCode = string.Empty;
 
        /// <summary>
        ///分拣台(库区)
        /// </summary>
        public static string WorkBench = string.Empty;
        /// <summary>
        /// 分拣台号(托盘货位)
        /// </summary>
        public static string WorkBenchTrayBit = string.Empty;
        /// <summary>
        /// 分拣台对应的操作库区(分拣台对应的目的库区)
        /// </summary>
        public static string WorkArea = string.Empty;
 
        public static List<string> UniPakBits = new List<string>();
 
        public static List<string> RecheckBits = new List<string>();
 
        public static List<TN_WM_B_STRATEGY_VALUEEntity> StrategyList = new List<TN_WM_B_STRATEGY_VALUEEntity>();
 
        public static List<Entitys.Basic.TN_AB_B_NUMRULEEntity> Numrules { get; set; }
    }
}