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.

71 lines
2.0 KiB
C#

This file contains ambiguous Unicode characters!

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; }
}