using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HH.WMS.Common.Algorithm { /// /// 入库算法传入JSON格式数据模型 /// public class InAlgorEnitty { /// /// 是否锁定货位 /// private bool _lockLocation = true; /// /// 是否锁定货位 /// public bool lockLocation { get { return _lockLocation; } set { _lockLocation = value; } } /// /// 指定仓库编号 * /// public string stockCode { get; set; } /// /// 指定库区编号 * /// public string stockAreaCode { get; set; } /// /// 指定逻辑分区 多个则以逗号分隔 /// public string logicCode { get; set; } /// /// 需要空货位的数量 * /// public int locationQty { get; set; } /// /// 托盘码 * /// public string trayCode { get; set; } /// /// 物料编码 * /// public string itemCode { get; set; } /// /// 设备信息 * /// public List lstDevice { get; set; } /// /// 入库算法类型 /// } }