From a6a33f6916afbf1fc629baecb772939cda2ee981 Mon Sep 17 00:00:00 2001
From: wankeda <Administrator@DESKTOP-HAU3ST3>
Date: 星期四, 13 三月 2025 17:58:12 +0800
Subject: [PATCH] 代码提交
---
代码管理/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/BasicService.cs | 14 ++++++++------
1 files changed, 8 insertions(+), 6 deletions(-)
diff --git "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/BasicService.cs" "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/BasicService.cs"
index ab3c111..01d01ec 100644
--- "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/BasicService.cs"
+++ "b/\344\273\243\347\240\201\347\256\241\347\220\206/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
}
}
--
Gitblit v1.9.3