Product_Wms/WcsMain/ApiClient/DataEntity/WmsEntity/UploadStackerStatusRequest.cs

45 lines
688 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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
}
]
*/
}