using HH.WMS.Entitys.Basic; using HH.WMS.Entitys.Entitys; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HH.WMS.Entitys.Check { public class CheckAuditPara { public CheckAuditPara() { //trayItemMsts = new List(); checkListHistorys = new List(); checkLists = new List(); stockQtys = new List(); areaQtys = new List(); } /// /// 仓库编码 /// public string stockCode { get; set; } /// /// 库区编码 /// public string areaCode { get; set; } /// /// 审核参数 /// public CheckAuditDto checkAuditDto { get;set; } /// /// 审核状态 /// public string state { get; set; } /// /// 是否最终审核 /// public bool isEnd { get; set; } /// /// 盘点单主表 /// public TN_WM_CHECK_MSTEntity checkMst { get; set; } /// /// 盘点数据列表 /// public List checkLists { get; set; } /// /// 盘点数据历史列表 /// public List checkListHistorys { get; set; } /// /// 托盘物料关联集合 /// //public List trayItemMsts { get; set; } /// /// 上架记录 /// public List upHis { get; set; } /// /// 下架记录 /// public List downHis { get; set; } /// /// 仓库库存 /// public List stockQtys { get; set; } /// /// 库区库存 /// public List areaQtys { get; set; } } }