102 lines
2.1 KiB
C#
102 lines
2.1 KiB
C#
|
|
using System.Text.Json.Serialization;
|
|||
|
|
|
|||
|
|
namespace WcsMain.ApiServe.Controllers.Dto.WcsDto.Stacker;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 查询堆垛机状态的返回实体
|
|||
|
|
/// </summary>
|
|||
|
|
public class GetStackerStatusResponse
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 设备编号
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonPropertyName("stackerId")]
|
|||
|
|
public int? StackerId { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 堆垛机名称
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonPropertyName("stackerName")]
|
|||
|
|
public string? StackerName { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 堆垛机状态
|
|||
|
|
/// </summary>
|
|||
|
|
/// <remarks>
|
|||
|
|
/// 0 - 禁用
|
|||
|
|
/// 1 - 启用
|
|||
|
|
/// </remarks>
|
|||
|
|
[JsonPropertyName("stackerStatus")]
|
|||
|
|
public int? StackerStatus { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 货叉状态
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonPropertyName("forkStatus")]
|
|||
|
|
public string? ForkStatus { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 查询结果
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonPropertyName("msg")]
|
|||
|
|
public string? Message { get; set; } = "-";
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 当前运行任务号
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonPropertyName("plcId")]
|
|||
|
|
public string? PlcId { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 控制方式
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonPropertyName("controlModel")]
|
|||
|
|
public string? ControlModel { get; set; } = "0";
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 设备状态
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonPropertyName("stackerStatusEquip")]
|
|||
|
|
public string? StackerStatusEquip { get; set; } = "0";
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 排
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonPropertyName("queue")]
|
|||
|
|
public int? Queue { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 列
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonPropertyName("line")]
|
|||
|
|
public int? Line { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 层
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonPropertyName("layer")]
|
|||
|
|
public int? Layer { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 深
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonPropertyName("depth")]
|
|||
|
|
public int? Depth { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 条码
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonPropertyName("code")]
|
|||
|
|
public string? Code { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 报警编号
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonPropertyName("errCode")]
|
|||
|
|
public int? ErrCode { get; set; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|