Product_Wms/WcsMain/ApiClient/WMS/Dto/UploadStackerStatusRequest.cs
icewint 03c600bc70 1、修改文件结构
2、删除不使用的 using
2024-11-15 11:38:01 +08:00

45 lines
674 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.WMS.Dto;
/// <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
}
]
*/
}