using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEA_DTO.Outbound { public class OutboundOrderGetDTO { public string OrderNo { get; set; } public int pageNo { get; set; } } // 拆包请求 public class SplitPackageRequest { public int OutStockLockInfoId { get; set; } public string MaterielCode { get; set; } public decimal SplitQuantity { get; set; } public string Operator { get; set; } } public class PickingConfirmRequest { public int OrderDetailId { get; set; } public string Barcode { get; set; } public string MaterielCode { get; set; } public decimal PickQuantity { get; set; } public string LocationCode { get; set; } public string PalletCode { get; set; } } public class DirectOutboundRequest { public string PalletCode { get; set; } } public class CancelPickingRequest { public int PickingHistoryId { get; set; } } public class BackToStockRequest { public string PalletCode { get; set; } public string CurrentLocation { get; set; } public string TargetLocation { get; set; } public string Operator { get; set; } } public class BackToStockCompleteRequest { public string TaskNum { get; set; } public string TargetLocation { get; set; } public DateTime CompleteTime { get; set; } } }