28 lines
633 B
C#
28 lines
633 B
C#
|
|
using System.Text.Json.Serialization;
|
|||
|
|
|
|||
|
|
namespace WcsMain.ApiServe.Controllers.Dto.Equipment;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 输送设备信息 ---- 卡特专用
|
|||
|
|
/// </summary>
|
|||
|
|
public class ConveyStatusResponse
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 输送机编号,名称
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonPropertyName("conveyNo")]
|
|||
|
|
public string? ConveyNo { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 是否含有货物
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonPropertyName("existGoods")]
|
|||
|
|
public bool? ExistGoods { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 是否含有AGV
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonPropertyName("existAGV")]
|
|||
|
|
public bool? ExistAGV { get; set; }
|
|||
|
|
|
|||
|
|
}
|