ExportMachineChange.cs 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Text;
  5. using AutoMapper;
  6. namespace DllEapEntity.Dtos
  7. {
  8. [AutoMap(typeof(MachineChange))]
  9. public class ExportMachineChange
  10. {
  11. [Description("园区")]
  12. public string Factory { get; set; }
  13. [Description("厂房")]
  14. public string Plant { get; set; }
  15. [Description("楼层")]
  16. public string Floor { get; set; }
  17. [Description("工序")]
  18. public string PCode { get; set; }
  19. [Description("设备ID")]
  20. public string MacCode { get; set; }
  21. [Description("机台编号")]
  22. public string MacNum { get; set; }
  23. [Description("开始时间")]
  24. public DateTime STime { get; set; }
  25. [Description("原机种")]
  26. public string PreRecipe { get; set; }
  27. [Description("改机机种")]
  28. public string CurentRecipe { get; set; }
  29. [Description("完成时间")]
  30. public DateTime ETime { get; set; }
  31. [Description("改机用时")]
  32. public double Time { get; set; }
  33. [Description("标准用时")]
  34. public double StandardTime { get; set; }
  35. [Description("超出用时")]
  36. public double ExtraTime { get; set; }
  37. [Description("改机人工号")]
  38. public string RecCode { get; set; }
  39. [Description("改机人姓名")]
  40. public string Name { get; set; }
  41. }
  42. }