1
wankeda
2025-03-25 e0fb00cb3bb37f519b8444b3c5408111207fb069
代码管理/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/BasicService.cs
@@ -27,8 +27,9 @@
        public IAreaRouterService AreaRouterService { get; }
        public ICachePointService CachePointService { get; }
        public IEquipmentService EquipmentService { get; }
        public BasicService(IAreaInfoService areaInfoService, ILocationInfoService locationInfoService, IMaterielInfoService materielInfoService, IRoadwayInfoService roadwayInfoService, IWarehouseService warehouseService, IAreaRouterService areaRouterService, ICachePointService cachePointService)
        public BasicService(IAreaInfoService areaInfoService, ILocationInfoService locationInfoService, IMaterielInfoService materielInfoService, IRoadwayInfoService roadwayInfoService, IWarehouseService warehouseService, IAreaRouterService areaRouterService, ICachePointService cachePointService, IEquipmentService equipmentService)
        {
            AreaInfoService = areaInfoService;
            LocationInfoService = locationInfoService;
@@ -37,26 +38,27 @@
            WarehouseService = warehouseService;
            AreaRouterService = areaRouterService;
            CachePointService = cachePointService;
            EquipmentService = equipmentService;
        }
        #region AreaInfo
        #endregion
        #region CachePoint
        #endregion
        #region LocationInfo
        #endregion
        #region RoadwayInfo
        #endregion
        #region Warehouse
        #endregion
    }
}