/********************************************************************************
|
|
** 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; }
|
}
|
}
|