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