From 4f40a6aeee4a09a663409a6e4fc60350b5fd48a0 Mon Sep 17 00:00:00 2001
From: xiazhengtongxue <133085197+xiazhengtongxue@users.noreply.github.com>
Date: 星期二, 21 四月 2026 13:12:16 +0800
Subject: [PATCH] feat: 添加AGV任务管理和托盘组功能 feat(task): 新增AGV任务页面和路由配置 feat(stock): 添加托盘组管理页面及进站出站操作 feat(task): 在任务历史页面添加操作类型列 refactor: 优化AGV任务查询条件及过滤逻辑
---
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