using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tnb.WarehouseMgr.Entities.Dto { /// /// 生成预任务成功后输入参数 /// public class GenPreTaskUpInput { /// /// 预任务Id /// public string RquireId { get; set; } /// /// 载具Id /// public string CarryId { get; set; } /// /// 载具Code /// public string CarryCode { get; set; } /// /// 载具起始库位Id /// public string CarryStartLocationId { get; set; } /// /// 载具起始库位编号 /// public string CarryStartLocationCode { get; set; } /// /// 库位IdS /// public List LocationIds { get; set; } /// /// 预任务操作记录 /// public List PreTaskRecords { get; set; } /// /// 预任务操作记录 /// public WmsHandleH PreTaskRecord { get; set; } /// /// 预任务条码记录 /// public List PreTaskHandleCodes { get; set; }=new List(); /// /// 是否检验 /// public int? IsCheck { get; set; } } }