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