using System.Text.Json.Serialization;
namespace WcsMain.ApiServe.Controllers.Dto.WMSEntity.Equipment
{
public class QueryStandStatusResponse
{
///
/// 响应时间
///
[JsonPropertyName("responseTime")]
public string? ResponseTime { get; set; }
///
/// 动作允许
///
[JsonPropertyName("allowAction")]
public bool? AllowAction { get; set; }
///
/// 信息
///
[JsonPropertyName("msg")]
public string? Msg { get; set; }
}
}