ExportDaSampl.cs 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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(Sample))]
  10. public class ExportDaSampl
  11. {
  12. [Description("设备ID")]
  13. public string macCode { get; set; }
  14. [Description("机台编号")]
  15. public string macNum { get; set; }
  16. [Description("园区")]
  17. public string factory { get; set; }
  18. [Description("厂房")]
  19. public string plant { get; set; }
  20. [Description("楼层")]
  21. public string floor { get; set; }
  22. [Description("工序")]
  23. public string pCode { get; set; }
  24. [Description("机种")]
  25. public string type { get; set; }
  26. [Description("时间")]
  27. public DateTime time { get; set; }
  28. [Description("X点检值")]
  29. public double x { get; set; }
  30. [Description("Y点检值")]
  31. public double y { get; set; }
  32. [Description("T点检值")]
  33. public double t { get; set; }
  34. [Description("X实际值")]
  35. public double sXOffset { get; set; }
  36. [Description("Y实际值")]
  37. public double sYOffset { get; set; }
  38. [Description("T实际值")]
  39. public double sTOffset { get; set; }
  40. [Description("X预警线")]
  41. public string wXOffset { get; set; }
  42. [Description("Y预警线")]
  43. public string wYOffset { get; set; }
  44. [Description("T预警线")]
  45. public string wTOffset { get; set; }
  46. [Description("X异常线")]
  47. public string aXOffset { get; set; }
  48. [Description("Y异常线")]
  49. public string aYOffset { get; set; }
  50. [Description("T异常线")]
  51. public string aTOffset { get; set; }
  52. [Description("结果")]
  53. public string result { get; set; }
  54. [Description("姓名")]
  55. public string name { get; set; }
  56. }
  57. }