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