namespace Tnb.WarehouseMgr.Entities.Dto.Inputs { /// /// 出库签收输入参数 /// public class SignForDeliveryInput { /// /// 任务ID /// public string disTaskId { get; set; } /// /// 载具ID /// public string carryId { get; set; } public string carry_code { get; set; } public string new_carry_code { get; set; } public string org_id { get; set; } /// /// 任务执行条码表 /// public List distaskCodes { get; set; } } }