ExportWorkingProcedure.cs 994 B

123456789101112131415161718192021222324252627282930313233
  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(WorkingProcedure))]
  9. public class ExportWorkingProcedure
  10. {
  11. [Description("园区")]
  12. public string Park { get; set; }
  13. [Description("楼层")]
  14. public string Floor { get; set; }
  15. [Description("机种")]
  16. public string MachineType { get; set; }
  17. [Description("工段")]
  18. public string WorkshopSection { get; set; }
  19. [Description("作业内容")]
  20. public string AssignmentContent { get; set; }
  21. [Description("设备名称")]
  22. public string EquipmentName { get; set; }
  23. [Description("设备型号")]
  24. public string EquipmentModel { get; set; }
  25. [Description("稼动率")]
  26. public string EropTurnoverRate { get; set; }
  27. [Description("UPH")]
  28. public int UPH { get; set; }
  29. }
  30. }