From 8e42d0c1b7ae36cff2e7c69999117911a4b6f300 Mon Sep 17 00:00:00 2001
From: wanshenmean <cathay_xy@163.com>
Date: 星期四, 26 三月 2026 17:31:06 +0800
Subject: [PATCH] feat(WCS): 完善 WIDESEAWCS_Tasks 模块代码注释
---
Code/WCS/WIDESEAWCS_Server/WIDESEAWCS_Tasks/ConveyorLineNewJob/ConveyorLine/CheckPalletPosition.cs | 23 +++++++++++++++++++++++
1 files changed, 23 insertions(+), 0 deletions(-)
diff --git a/Code/WCS/WIDESEAWCS_Server/WIDESEAWCS_Tasks/ConveyorLineNewJob/ConveyorLine/CheckPalletPosition.cs b/Code/WCS/WIDESEAWCS_Server/WIDESEAWCS_Tasks/ConveyorLineNewJob/ConveyorLine/CheckPalletPosition.cs
index 85a4ade..725fdca 100644
--- a/Code/WCS/WIDESEAWCS_Server/WIDESEAWCS_Tasks/ConveyorLineNewJob/ConveyorLine/CheckPalletPosition.cs
+++ b/Code/WCS/WIDESEAWCS_Server/WIDESEAWCS_Tasks/ConveyorLineNewJob/ConveyorLine/CheckPalletPosition.cs
@@ -1,9 +1,32 @@
namespace WIDESEAWCS_Tasks
{
+ /// <summary>
+ /// 托盘位置检查配置实体
+ /// </summary>
+ /// <remarks>
+ /// 用于配置需要检查托盘位置的站点信息。
+ /// 当系统需要检查特定位置是否有托盘时使用此配置。
+ /// 配置来源于 appsettings.json 中的 CheckPalletPositions 节点。
+ /// </remarks>
public class CheckPalletPosition
{
+ /// <summary>
+ /// 子设备编码/位置编码
+ /// </summary>
+ /// <remarks>
+ /// 用于标识需要检查托盘的位置点。
+ /// </remarks>
public string Code { get; set; } = string.Empty;
+ /// <summary>
+ /// 仓库 ID
+ /// </summary>
+ /// <remarks>
+ /// 标识托盘所在的仓库编号。
+ /// 1: ZYRB1 对应的仓库
+ /// 2: HPRB001 对应的仓库
+ /// 3: 其他仓库
+ /// </remarks>
public int WarehouseId { get; set; } = 0;
}
}
--
Gitblit v1.9.3