using System.Text.Json.Serialization; namespace WcsMain.ApiServe.Controllers.Dto.WcsDto.Stacker; public class QueryErrInfoRequest { /// /// 区域 /// [JsonPropertyName("area")] public string? Area { get; set; } /// /// 报警编号 /// [JsonPropertyName("errNo")] public int? ErrNo { get; set; } }