wanshenmean
2026-03-31 a200871400d465620d45189b8068fafd0d95e01a
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
using WIDESEA_Core;
 
namespace WIDESEA_IBasicService
{
    /// <summary>
    /// 基础信息服务聚合接口
    /// </summary>
    public interface IBasicService : IDependency
    {
        /// <summary>
        /// 货位业务层
        /// </summary>
        ILocationInfoService LocationInfoService { get; }
 
        /// <summary>
        /// 物料业务层
        /// </summary>
        IMaterielInfoService MaterielInfoService { get; }
 
        /// <summary>
        /// 仓库业务层
        /// </summary>
        IWarehouseService WarehouseService { get; }
 
        /// <summary>
        /// 托盘编码业务层
        /// </summary>
        IPalletCodeInfoService PalletCodeInfoService { get; }
 
        /// <summary>
        /// 物料编码业务层
        /// </summary>
        IMaterielCodeInfoService MaterielCodeInfoService { get; }
    }
}