using WIDESEA_Core; using WIDESEA_Core.BaseServices; using WIDESEA_DTO; using WIDESEA_DTO.Order; using WIDESEA_DTO.Stock; using WIDESEA_Model.Models.Order; namespace WIDESEA_IOrderServices; public interface IDt_AllocateOutboundOrderService : IService { WebResponseContent GetAllocateOutboundOrder(OutboundOrderGetDTO outboundOrderGetDTO); WebResponseContent GetAllocateOutboundOrderDetail(OutboundOrderGetDTO outboundOrderGetDTO); /// /// 根据请求出库任务 /// /// /// Task GenerateAllocateOutboundTask(GenerateOutTaskDto requestOut); }