ExportPostbondviewDtocs.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  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(PostbondviewDto))]
  10. public class ExportPostbondviewDtocs
  11. {
  12. [Description ("设备ID")]
  13. public string MacCode { get; set; }
  14. [Description ("时间")]
  15. public DateTime Time { get; set; }
  16. [Description ("机种")]
  17. public string Recipe { get; set; }
  18. [Description("工序")]
  19. public string FCode { get; set; }
  20. [Description("OffsetX")]
  21. public double OffsetX { get; set; }
  22. [Description("X稼动极差")]
  23. public double Diff_X { get; set; }
  24. [Description("OffsetY")]
  25. public double OffsetY { get; set; }
  26. [Description("Y稼动极差")]
  27. public double Diff_Y { get; set; }
  28. [Description("旋转角度T")]
  29. public double OffsetT { get; set; }
  30. [Description("T稼动极差")]
  31. public double Diff_T { get; set; }
  32. }
  33. }