1
huangxiaoqiang
7 天以前 4dfe8ece141f05a163cf7d290b6fe4c520d89909
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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<Dt_AllocateOutboundOrder>
{
 
    WebResponseContent GetAllocateOutboundOrder(OutboundOrderGetDTO outboundOrderGetDTO);
 
    WebResponseContent GetAllocateOutboundOrderDetail(OutboundOrderGetDTO outboundOrderGetDTO);
 
    /// <summary>
    /// 根据请求出库任务
    /// </summary>
    /// <param name="requestOut"></param>
    /// <returns></returns>
    Task<WebResponseContent> GenerateAllocateOutboundTask(GenerateOutTaskDto requestOut);
}