ExportErrorMessageDto.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. using AutoMapper;
  2. using DllEapEntity.OFILM;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.ComponentModel;
  6. using System.Text;
  7. namespace DllEapEntity.Dtos
  8. {
  9. [AutoMap(typeof(ErrorMessageDto))]
  10. public class ExportErrorMessageDto
  11. {
  12. [Description ("机台号或机种")]
  13. public string FKey { get; set; }
  14. [Description("LensInput")]
  15. public int LensInput { get; set; }
  16. [Description (" 报警数")]
  17. public int LensVacuoAlarms { get; set; }
  18. [Description (" 报警率 ")]
  19. public string LensVacuoAlarmRate { get; set; }
  20. [Description ("报警数 ")]
  21. public int LensPrAlarms { get; set; }
  22. [Description ("报警率")]
  23. public string LensPrAlarmRate { get; set; }
  24. [Description ("SensorInput")]
  25. public int SensorInput { get; set; }
  26. [Description ("报警数")]
  27. public int SensorVacuoAlarms { get; set; }
  28. [Description (" 报警率")]
  29. public string SensorVacuoAlarmRate { get; set; }
  30. [Description ("报警数")]
  31. public int? SensorPrAlarms { get; set; }
  32. [Description ("报警率")]
  33. public string SensorPrAlarmRate { get; set; }
  34. }
  35. }