ExportAlarmCode.cs 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. using AutoMapper;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Text;
  6. namespace DllEapEntity.Dtos
  7. {
  8. [AutoMap(typeof(AlarmCode))]
  9. public class ExportAlarmCode
  10. {
  11. [Description("园区")]
  12. public string FactoryName { get; set; }
  13. [Description("厂房")]
  14. public string FloorName { get; set; }
  15. [Description("楼层")]
  16. public string PlantName { get; set; }
  17. [Description("制程代码")]
  18. public string pcode { get; set; }
  19. [Description("设备类型")]
  20. public string macmodel { get; set; }
  21. [Description("设备编号")]
  22. public string maccode { get; set; }
  23. [Description("报警代码")]
  24. public string name { get; set; }
  25. [Description("报警时间")]
  26. public DateTime ptime { get; set; }
  27. [Description("报警描述")]
  28. public string description { get; set; }
  29. [Description("中文描述")]
  30. public string ChAlarm { get; set; }
  31. }
  32. }