ExportParameters.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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 ExportParameters
  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("postbond offset X(um)")]
  29. public double x { get; set; }
  30. [Description("postbond offset Y(um)")]
  31. public double y { get; set; }
  32. [Description("postbond offset T(°)")]
  33. public double t { get; set; }
  34. [Description("主点胶压力值MDP(KPa)")]
  35. public double mdp { get; set; }
  36. [Description("副点胶压力值ADP(KPa)")]
  37. public double adp { get; set; }
  38. }
  39. }