namespace RIZO.Model.MES.alarm.Dto { /// /// PLC报警信息查询对象 /// public class AlarmInfoQueryDto : PagerInfo { } /// /// PLC报警信息输入输出对象 /// 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; } } }