pan
2025-11-11 c4e1a656954799267cbd61d3de3a040e8dc8e46a
项目代码/WMS无仓储版/WIDESEA_WMSServer/WIDESEA_DTO/Outbound/OutboundOrderGetDTO.cs
@@ -12,4 +12,49 @@
        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; }
    }
}