1
huangxiaoqiang
2 天以前 5a15fa73d5f6a39917013871a65eb11a8c013391
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);
}