45 lines
688 B
C#
45 lines
688 B
C#
|
|
using Newtonsoft.Json;
|
|||
|
|
|
|||
|
|
namespace WcsMain.ApiClient.DataEntity.WmsEntity;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 上传堆垛机是否报错的请求实体
|
|||
|
|
/// </summary>
|
|||
|
|
public class UploadStackerStatusRequest
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 设备号
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("equipment")]
|
|||
|
|
public int? Equipment { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 是否报错 --- 0:不报错;1:不可用
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("error")]
|
|||
|
|
public int? Error { get; set; }
|
|||
|
|
|
|||
|
|
/*
|
|||
|
|
|
|||
|
|
|
|||
|
|
[
|
|||
|
|
{
|
|||
|
|
"equipment":1,
|
|||
|
|
"error":0
|
|||
|
|
},
|
|||
|
|
{
|
|||
|
|
"equipment":2,
|
|||
|
|
"error":1
|
|||
|
|
}
|
|||
|
|
]
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|