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