namespace WIDESEAWCS_DTO.WMS { public class RequestTaskDto { /// /// 当前位置 /// public string Position { get; set; } /// /// 托盘号 /// public string PalletCode { get; set; } /// /// 空托盘可入巷到 /// public string PositionList { get; set; } /// /// 任务类型 /// public string RequestType { get; set; } = string.Empty; } public class RequestAcrossFloorTaskDto { /// /// 任务号 /// public int TaskNum { get; set; } /// /// 托盘号 /// public string PalletCode { get; set; } /// /// 下一位置 /// public string NextAddress { get; set; } } }