From 011ca316e6ec2ed93e31c45a9ebd9d3c66664871 Mon Sep 17 00:00:00 2001
From: wangxinhui <wangxinhui@hnkhzn.com>
Date: 星期五, 17 四月 2026 11:47:03 +0800
Subject: [PATCH] 代码更新
---
项目代码/WMS/WMSServices/WIDESEA_OutboundService/OutboundService.cs | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 54 insertions(+), 0 deletions(-)
diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WMSServices/WIDESEA_OutboundService/OutboundService.cs" "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WMSServices/WIDESEA_OutboundService/OutboundService.cs"
new file mode 100644
index 0000000..9c39911
--- /dev/null
+++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WMSServices/WIDESEA_OutboundService/OutboundService.cs"
@@ -0,0 +1,54 @@
+锘縰sing System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using WIDESEA_IOutboundService;
+
+namespace WIDESEA_OutboundService
+{
+ /// <summary>
+ /// 鍑哄簱涓氬姟灞傞泦鎴�
+ /// </summary>
+ public class OutboundService : IOutboundService
+ {
+ /// <summary>
+ /// MES棰嗘枡涓氬姟鎺ュ彛灞�
+ /// </summary>
+ public IOutMESOrderService OutMESOrderService { get; }
+ /// <summary>
+ /// 鐢熺鎺掔▼涓氬姟鎺ュ彛灞�
+ /// </summary>
+ public IOutSGOrderService OutSGOrderService { get; }
+ /// <summary>
+ /// 鐢熺鎺掔▼鏄庣粏涓氬姟鎺ュ彛灞�
+ /// </summary>
+ public IOutSGOrderDetailService OutSGOrderDetailService { get; }
+ /// <summary>
+ /// 鍑哄簱璇︽儏涓氬姟鎺ュ彛灞�
+ /// </summary>
+ public IOutStockLockInfoService OutStockLockInfoService { get; }
+ /// <summary>
+ /// 鑰佸巶绾夸綋缂撳瓨涓氬姟鎺ュ彛灞�
+ /// </summary>
+ public IOutLineViewService OutLineViewService { get; }
+ /// <summary>
+ /// 鏂板巶鎴愬搧閿�鍞笟鍔℃帴鍙e眰
+ /// </summary>
+ public IProDeliveryOrderService ProDeliveryOrderService { get; }
+ /// <summary>
+ /// 鏂板巶鎴愬搧閿�鍞槑缁嗕笟鍔℃帴鍙e眰
+ /// </summary>
+ public IProDeliveryOrderDetailService ProDeliveryOrderDetailService { get; }
+ public OutboundService(IOutMESOrderService outMESOrderService, IOutSGOrderService outSGOrderService, IOutSGOrderDetailService outSGOrderDetailService, IOutStockLockInfoService outStockLockInfoService, IOutLineViewService outLineViewService, IProDeliveryOrderService proDeliveryOrderService, IProDeliveryOrderDetailService proDeliveryOrderDetailService)
+ {
+ OutMESOrderService = outMESOrderService;
+ OutSGOrderService = outSGOrderService;
+ OutSGOrderDetailService = outSGOrderDetailService;
+ OutStockLockInfoService = outStockLockInfoService;
+ OutLineViewService = outLineViewService;
+ ProDeliveryOrderService = proDeliveryOrderService;
+ ProDeliveryOrderDetailService = proDeliveryOrderDetailService;
+ }
+ }
+}
--
Gitblit v1.9.3