using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HH.WMS.Common.Algorithm { /// /// 出库算法返回实体 /// public class OutAssignResultEntity { /// /// 是否成功 /// public bool Success { get; set; } /// /// 错误提示 /// public string Msg { get; set; } /// /// 托盘码 /// public string trayCode { get; set; } /// /// 货位码 /// public string locationCode { get; set; } /// /// 库区码 /// public string areaCode { get; set; } /// /// 库区结构 /// public string areaType { get; set; } /// /// 货位中指数 /// public string index { get; set; } /// /// 是否控制数量 /// public string isControlQty { get; set; } /// /// 是否控制库存 /// public string isControlInv { get; set; } } }