Product_Wms/WcsMain/ApiServe/Dto/WcsDto/Stacker/QueryErrInfoRequest.cs

22 lines
378 B
C#
Raw Permalink Normal View History

2024-10-07 09:51:55 +08:00
using System.Text.Json.Serialization;
namespace WcsMain.ApiServe.Dto.WcsDto.Stacker;
2024-10-07 09:51:55 +08:00
public class QueryErrInfoRequest
{
/// <summary>
/// 区域
/// </summary>
[JsonPropertyName("area")]
public string? Area { get; set; }
2024-10-07 09:51:55 +08:00
/// <summary>
/// 报警编号
/// </summary>
[JsonPropertyName("errNo")]
public int? ErrNo { get; set; }
}