namespace WIDESEA_DTO; public class RequestTaskDto { /// /// 当前位置 /// public string Position { get; set; } /// /// 托盘号 /// public string PalletCode { get; set; } /// /// 空托盘可入巷到 /// public string TargetAddress { 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; } } public class RequestOutTaskDto { public string Position { get; set; } public int Tag { get; set; } public string AreaCdoe { get; set; } public List AreaCdoes { get; set; } public string ProductionLine { get; set; } }