From ce1292c9cf37195b6abd2699dfc5d6cb3e143c9b Mon Sep 17 00:00:00 2001
From: wanshenmean <cathay_xy@163.com>
Date: 星期日, 12 四月 2026 23:38:19 +0800
Subject: [PATCH] feat(MES): 添加MES接口相关实体和DTO JS扩展文件至JSX格式并更新配置
---
Code/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/BasicService.cs | 33 ++++++++++++++++++++++++++++++++-
1 files changed, 32 insertions(+), 1 deletions(-)
diff --git a/Code/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/BasicService.cs b/Code/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/BasicService.cs
index ac56868..841270c 100644
--- a/Code/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/BasicService.cs
+++ b/Code/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/BasicService.cs
@@ -2,19 +2,50 @@
namespace WIDESEA_BasicService
{
+ /// <summary>
+ /// 鍩虹淇℃伅鏈嶅姟鑱氬悎瀹炵幇绫�
+ /// </summary>
public class BasicService : IBasicService
{
+ /// <summary>
+ /// 鎵樼洏缂栫爜涓氬姟灞�
+ /// </summary>
public IPalletCodeInfoService PalletCodeInfoService { get; }
+ /// <summary>
+ /// 璐т綅涓氬姟灞�
+ /// </summary>
public ILocationInfoService LocationInfoService { get; }
+ /// <summary>
+ /// 鐗╂枡涓氬姟灞�
+ /// </summary>
public IMaterielInfoService MaterielInfoService { get; }
+ /// <summary>
+ /// 浠撳簱涓氬姟灞�
+ /// </summary>
public IWarehouseService WarehouseService { get; }
+ /// <summary>
+ /// 鐗╂枡缂栫爜涓氬姟灞�
+ /// </summary>
public IMaterielCodeInfoService MaterielCodeInfoService { get; }
- public BasicService(ILocationInfoService locationInfoService, IMaterielInfoService materielInfoService, IWarehouseService warehouseService, IPalletCodeInfoService palletCodeInfoService, IMaterielCodeInfoService materielCodeInfoService)
+ /// <summary>
+ /// 鏋勯�犲嚱鏁�
+ /// </summary>
+ /// <param name="locationInfoService">璐т綅淇℃伅鏈嶅姟</param>
+ /// <param name="materielInfoService">鐗╂枡淇℃伅鏈嶅姟</param>
+ /// <param name="warehouseService">浠撳簱淇℃伅鏈嶅姟</param>
+ /// <param name="palletCodeInfoService">鎵樼洏缂栫爜淇℃伅鏈嶅姟</param>
+ /// <param name="materielCodeInfoService">鐗╂枡缂栫爜淇℃伅鏈嶅姟</param>
+ public BasicService(
+ ILocationInfoService locationInfoService,
+ IMaterielInfoService materielInfoService,
+ IWarehouseService warehouseService,
+ IPalletCodeInfoService palletCodeInfoService,
+ IMaterielCodeInfoService materielCodeInfoService)
{
LocationInfoService = locationInfoService;
MaterielInfoService = materielInfoService;
--
Gitblit v1.9.3