2026-01-20 09:23:56 +08:00

40 lines
869 B
C#

namespace RIZO.Model.MES.alarm.Dto
{
/// <summary>
/// PLC报警信息查询对象
/// </summary>
public class AlarmInfoQueryDto : PagerInfo
{
}
/// <summary>
/// PLC报警信息输入输出对象
/// </summary>
public class AlarmInfoDto
{
[Required(ErrorMessage = "ID不能为空")]
public int Id { get; set; }
public string WorkstationCode { get; set; }
public string ErrType { get; set; }
public string ErrCode { get; set; }
public string CreatedBy { get; set; }
public DateTime? CreatedTime { get; set; }
public string UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
public string PlcIp { get; set; }
[ExcelColumn(Name = "报警问题类型")]
public string ErrTypeLabel { get; set; }
}
}