liulijun
2025-11-24 9086b238cd9fbb9fbeae7cab11d59576cd9d2853
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_Core;
 
namespace WIDESEA_IOutboundRepository
{
    /// <summary>
    /// 出库仓储接口层集成
    /// </summary>
    public interface IOutboundRepository : IDependency
    {
        /// <summary>
        /// MES领料单仓储接口层
        /// </summary>
        IOutMESOrderRepository OutMESOrderRepository { get; }
        /// <summary>
        /// 生管排程仓储接口层
        /// </summary>
        IOutSGOrderRepository OutSGOrderRepository { get; }
        /// <summary>
        /// 生管排程明细仓储接口层
        /// </summary>
        IOutSGOrderDetailRepository OutSGOrderDetailRepository { get; }
        /// <summary>
        /// 出库详情仓储接口层
        /// </summary>
        IOutStockLockInfoRepository OutStockLockInfoRepository { get; }
        /// <summary>
        /// 博思通领料信息仓储接口层
        /// </summary>
        IOutBSTPickInfoRepository OutBSTPickInfoRepository { get; }
        /// <summary>
        /// 成品销售出库仓储接口层
        /// </summary>
        IProDeliveryOrderRepository ProDeliveryOrderRepository { get; }
        /// <summary>
        /// 成品销售出库明细仓储接口层
        /// </summary>
        IProDeliveryOrderDetailRepository ProDeliveryOrderDetailRepository { get; }
        /// <summary>
        /// 老厂线体缓存仓储接口层
        /// </summary>
        IOutLineViewRepository OutLineViewRepository { get; }
    }
}