using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HH.WMS.Common.Algorithm { public class OutAssignEnitty { /// /// 设备信息 * /// public List lstDevice { get; set; } /// /// 是否锁定货位 /// public bool lockLocation { get { return _lockLocation; } set { _lockLocation = value; } } private bool _lockLocation = true; /// /// 是否锁定货位 /// private bool _needCallock = true; /// /// 是否锁定货位 /// public bool needCalLock { get { return _needCallock; } set { _needCallock = value; } } /// /// 出库库区优先级 * /// public List lstAreaPrior { get; set; } /// /// 仓库编码 /// public string stockCode { get; set; } /// /// 出库物料编码 /// public string itemCode { get; set; } /// /// 出库托盘规格、类型 /// public string traySpec { get; set; } /// /// 项目编码 * /// public string projectCode { get; set; } /// /// 出库物料编码 /// public string itemState { get; set; } /// /// 出库物料数量 /// public decimal itemQty { get; set; } /// /// 出库物料批次号 /// public string lotNo { get; set; } /// /// 出库终点 /// public string endBit { get; set; } } }