| | |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using WIDESEA_Core; |
| | | using WIDESEA_Core; |
| | | |
| | | namespace WIDESEA_IBasicService |
| | | { |
| | | public interface IBasicService: IDependency |
| | | /// <summary> |
| | | /// 基础信息服务聚合接口 |
| | | /// </summary> |
| | | public interface IBasicService : IDependency |
| | | { |
| | | /// <summary> |
| | | /// 货位业务层 |
| | |
| | | /// </summary> |
| | | IWarehouseService WarehouseService { get; } |
| | | |
| | | /// <summary> |
| | | /// 托盘编码业务层 |
| | | /// </summary> |
| | | IPalletCodeInfoService PalletCodeInfoService { get; } |
| | | |
| | | /// <summary> |
| | | /// 物料编码业务层 |
| | | /// </summary> |
| | | IMaterielCodeInfoService MaterielCodeInfoService { get; } |
| | | } |
| | | } |