1234567891011121314151617181920212223242526272829303132333435363738 |
- using AutoMapper;
- using DllEapEntity.OFILM;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Text;
- namespace DllEapEntity.Dtos
- {
- [AutoMap(typeof(ErrorMessageDto))]
- public class ExportErrorMessageDto
- {
- [Description ("机台号或机种")]
-
- public string FKey { get; set; }
-
- [Description("LensInput")]
- public int LensInput { get; set; }
- [Description (" 报警数")]
- public int LensVacuoAlarms { get; set; }
- [Description (" 报警率 ")]
- public string LensVacuoAlarmRate { get; set; }
- [Description ("报警数 ")]
- public int LensPrAlarms { get; set; }
- [Description ("报警率")]
- public string LensPrAlarmRate { get; set; }
- [Description ("SensorInput")]
- public int SensorInput { get; set; }
- [Description ("报警数")]
- public int SensorVacuoAlarms { get; set; }
- [Description (" 报警率")]
- public string SensorVacuoAlarmRate { get; set; }
- [Description ("报警数")]
- public int? SensorPrAlarms { get; set; }
- [Description ("报警率")]
- public string SensorPrAlarmRate { get; set; }
- }
- }
|