ExportMachineAlarmDto.cs 876 B

1234567891011121314151617181920212223242526272829
  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(AnalysisDto))]
  9. public class ExportMachineAlarmDto
  10. {
  11. [Description("园区")]
  12. public string FactoryName { get; set; }
  13. [Description("厂房")]
  14. public string PlantName { get; set; }
  15. [Description("楼层")]
  16. public string FloorName { get; set; }
  17. [Description("制程代码")]
  18. public string pcode { get; set; }
  19. [Description("设备类型")]
  20. public string macmodel { get; set; }
  21. [Description("设备编号")]
  22. public string name { get; set; }
  23. [Description("机台编号")]
  24. public string macnumber { get; set; }
  25. [Description("报警次数")]
  26. public int count { get; set; }
  27. }
  28. }