wangxinhui
2025-11-12 f54b7815d8451f362554e3d2d09b4991ce13d4ff
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
49
50
51
52
53
54
55
56
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_Core;
 
namespace WIDESEA_IInboundRepository
{
    /// <summary>
    /// 入库仓储接口层集成
    /// </summary>
    public interface IInboundRepository : IDependency
    {
        /// <summary>
        /// 博思通采购主表仓储接口
        /// </summary>
        IPurchaseBSTOrderRepository PurchaseBSTOrderRepository { get; }
        /// <summary>
        /// 博思通采购明细仓储接口
        /// </summary>
        IPurchaseBSTOrderDetailRepository PurchaseBSTOrderDetailRepository { get; }
        /// <summary>
        /// 博思通退料主表仓储接口
        /// </summary>
        IReturnBSTOrderRepository ReturnBSTOrderRepository { get; }
        /// <summary>
        /// 博思通退料明细仓储接口
        /// </summary>
        IReturnBSTOrderDetailRepository ReturnBSTOrderDetailRepository { get; }
        /// <summary>
        /// MES成品/半成品仓储接口
        /// </summary>
        IMESProInOrderInfoRepository MESProInOrderInfoRepository { get; }
        /// <summary>
        /// 原料缓存扫码
        /// </summary>
        IYLInboundCacheRepository YLInboundCacheRepository { get; }
        /// <summary>
        /// 二期入库单仓储接口
        /// </summary>
        IInboundOrderRepository InboundOrderRepository { get; }
        /// <summary>
        /// 二期入库单明细仓储接口
        /// </summary>
        IInboundOrderDetailRepository InboundOrderDetailRepository { get; }
        /// <summary>
        /// 二期采购入库单仓储接口
        /// </summary>
        IPurchaseOrderRepository PurchaseOrderRepository { get; }
        /// <summary>
        /// 二期采购入库单明细仓储接口
        /// </summary>
        IPurchaseOrderDetailRepository PurchaseOrderDetailRepository { get; }
    }
}