using System.Text.Json.Serialization;
namespace WcsMain.ApiServe.Dto.Equipment;
///
/// 堆垛机状态返回实体类
///
public class StackerStatusResponse
{
///
/// 堆垛机编号
///
[JsonPropertyName("stackerNo")]
public string? StackerNo { get; set; }
///
/// 堆垛机控制方式
///
[JsonPropertyName("controlModel")]
public string? ControlModel { get; set; }
///
/// 堆垛机状态
///
[JsonPropertyName("onlineStatus")]
public string? OnlineStatus { get; set; }
///
/// 堆垛机任务号
///
[JsonPropertyName("plcId")]
public string? PlcId { get; set; }
///
/// 堆垛机报警编号
///
[JsonPropertyName("errCode")]
public string? ErrCode { get; set; }
}