You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
#region << 版 本 注 释 >>
/*--------------------------------------------------------------------
* 版权所有 (c) 2026 WenJY 保留所有权利。
* CLR版本: 4.0.30319.42000
* 机器名称: Mr.Wen's MacBook Pro
* 命名空间: Sln.Wcs.HoistAdapter.Domain.Dto.GetHoistStatus
* 唯一标识: 8BF91B3B-BB38-4809-9F3A-0B634C3853DC
*
* 创建者: WenJY
* 电子邮箱:
* 创建时间: 2026-05-29 14:30:55
* 版本: V1.0.0
* 描述:
*
*--------------------------------------------------------------------
* 修改人:
* 时间:
* 修改说明:
*
* 版本: V1.0.0
*--------------------------------------------------------------------*/
#endregion << 版 本 注 释 >>
namespace Sln.Wcs.HoistAdapter.Domain.Dto.GetHoistStatus ;
public class GetHoistStatusDto
{
/// <summary>
/// 提升机编号
/// </summary>
public string hoistCode { get ; set ; }
/// <summary>
/// 反馈任务执行指令:是否可以下发任务
/// </summary>
public string canDispatchTask { get ; set ; }
/// <summary>
/// 当前楼层
/// </summary>
public string currentFloor { get ; set ; }
/// <summary>
/// 接驳位状态( 1~5 楼)
/// 索引 0 → 1楼, 索引 1 → 2楼, ... 索引 4 → 5楼
/// </summary>
public List < string > transferStationStatus { get ; set ; }
/// <summary>
/// 读写器触发状态( 1~5 楼)
/// 索引 0 → 1楼, 索引 1 → 2楼, ... 索引 4 → 5楼
/// </summary>
public List < string > readerTriggerStatus { get ; set ; }
/// <summary>
/// 自动状态: true = 自动模式, false = 手动模式
/// </summary>
public string isAutoMode { get ; set ; }
/// <summary>
/// 屏蔽调度: true = 屏蔽中, false = 未屏蔽
/// </summary>
public string isDispatchBlocked { get ; set ; }
/// <summary>
/// 状态指示(详见 <see cref="IndicatorState"/>)
/// </summary>
public string stateIndicator { get ; set ; }
}