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