wcs_serve_wuxikate/WcsMain/ApiServe/Controllers/Dto/WcsDto/Stacker/QueryErrInfoRequest.cs

22 lines
391 B
C#
Raw Normal View History

2025-01-03 14:36:27 +08:00
using System.Text.Json.Serialization;
namespace WcsMain.ApiServe.Controllers.Dto.WcsDto.Stacker;
public class QueryErrInfoRequest
{
/// <summary>
/// 区域
/// </summary>
[JsonPropertyName("area")]
public string? Area { get; set; }
/// <summary>
/// 报警编号
/// </summary>
[JsonPropertyName("errNo")]
public int? ErrNo { get; set; }
}