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.

81 lines
2.1 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.HoistApi.Domain.Model.GetHoistStatus
* 唯一标识A8DBEA2F-0505-40E1-B810-2617B9B0EBA7
*
* 创建者WenJY
* 电子邮箱:
* 创建时间2026-05-29 14:32:07
* 版本V1.0.0
* 描述:
*
*--------------------------------------------------------------------
* 修改人:
* 时间:
* 修改说明:
*
* 版本V1.0.0
*--------------------------------------------------------------------*/
#endregion << 版 本 注 释 >>
namespace Sln.Wcs.HoistApi.Domain.Model.GetHoistStatus;
public class GetHoistStatusResultModel
{
/// <summary>
/// 返回码
/// </summary>
public string code { get; set; }
/// <summary>
/// 返回消息
/// </summary>
public string message { get; set; }
/// <summary>
/// 提升机编号
/// </summary>
public string hoistCode { get; set; }
/// <summary>
/// 反馈任务执行指令:是否可以下发任务
/// </summary>
public int canDispatchTask { get; set; }
/// <summary>
/// 当前楼层
/// </summary>
public int currentFloor { get; set; }
/// <summary>
/// 接驳位状态1~5 楼)
/// 索引 0 → 1楼索引 1 → 2楼... 索引 4 → 5楼
/// </summary>
public int[] transferStationStatus { get; set; } = new int[5];
/// <summary>
/// 读写器触发状态1~5 楼)
/// 索引 0 → 1楼索引 1 → 2楼... 索引 4 → 5楼
/// </summary>
public int[] readerTriggerStatus { get; set; } = new int[5];
/// <summary>
/// 自动状态true = 自动模式false = 手动模式
/// </summary>
public int isAutoMode { get; set; }
/// <summary>
/// 屏蔽调度true = 屏蔽中false = 未屏蔽
/// </summary>
public int isDispatchBlocked { get; set; }
/// <summary>
/// 状态指示(详见 <see cref="IndicatorState"/>
/// </summary>
public int stateIndicator { get; set; }
}