wanshenmean
2026-03-11 5af11cc200dd5ebe474b9c0475883b0e6d1e3759
Code/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/IOutboundService.cs
@@ -1,18 +1,25 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_Core;
using WIDESEA_Core;
namespace WIDESEA_IOutboundService
{
    /// <summary>
    /// 出库服务聚合接口
    /// </summary>
    public interface IOutboundService:IDependency
    {
        /// <summary>
        /// 出库单明细服务
        /// </summary>
        IOutboundOrderDetailService OutboundOrderDetailService { get; }
        /// <summary>
        /// 出库单服务
        /// </summary>
        IOutboundOrderService OutboundOrderService { get; }
        IOutStockLockInfoService OutboundStockLockInfoService { get; }
        /// <summary>
        /// 出库库存锁定信息服务
        /// </summary>
        IOutStockLockInfoService OutStockLockInfoService { get; }
    }
}