using System; using System.Collections.Generic; using System.Text; namespace DllEapEntity.OFILM { /// /// AA抛料报警分析实体 /// public class ErrorMessageDto { /// /// 机台号或机种 /// public string FKey { get; set; } /// /// 产出 /// public int Output { get; set; } /// /// 真空Input /// public int LensInput { get; set; } /// /// Lens真空报警数 /// public int? LensVacuoAlarms { get; set; } /// /// Lens真空报警率 /// public string LensVacuoAlarmRate { get; set; } /// /// LensPR报警数 /// public int? LensPrAlarms { get; set; } /// /// LensPR报警率 /// public string LensPrAlarmRate { get; set; } /// /// SensorInput /// public int SensorInput { get; set; } /// /// Sensor真空报警数 /// public int? SensorVacuoAlarms { get; set; } /// /// Sensor真空报警率 /// public string SensorVacuoAlarmRate { get; set; } /// /// SensorPR报警数 /// public int? SensorPrAlarms { get; set; } /// /// SensorPR报警率 /// public string SensorPrAlarmRate { get; set; } } public class ErrorMessageCountDto { public string Type { get; set; } public int Count { get; set; } public string Recipe { get; set; } public string FKey { get; set; } public string Category { get; set; } } }