2024-10-07 09:51:55 +08:00
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
|
2024-11-15 11:37:55 +08:00
|
|
|
|
namespace WcsMain.ApiServe.Dto.WMSEntity.Equipment
|
2024-10-07 09:51:55 +08:00
|
|
|
|
{
|
|
|
|
|
|
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; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|