33 lines
666 B
C#
33 lines
666 B
C#
using Newtonsoft.Json;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace WcsMain.ApiServe.Vo.Board;
|
|
|
|
public class ErrorDetail
|
|
{
|
|
/// <summary>
|
|
/// 时间
|
|
/// </summary>
|
|
[JsonPropertyName("time")]
|
|
public string? Time { get; set; }
|
|
|
|
/// <summary>
|
|
/// 设备名称
|
|
/// </summary>
|
|
[JsonPropertyName("material")]
|
|
public string? Material { get; set; }
|
|
|
|
/// <summary>
|
|
/// 故障信息
|
|
/// </summary>
|
|
[JsonPropertyName("faultName")]
|
|
public string? FaultName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 故障代码
|
|
/// </summary>
|
|
[JsonPropertyName("faultCode")]
|
|
public string? FaultCode { get; set; }
|
|
|
|
}
|