ExportAAParameters.cs 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  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(AaParametersInfo))]
  9. public class ExportAAParameters
  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("设备ID")]
  18. public string FCode { get; set; }
  19. [Description("机种")]
  20. public string Type { get; set; }
  21. [Description("画胶气压-1")]
  22. public double EW1_DspPressure { get; set; }
  23. [Description("画胶气压-2")]
  24. public double EW2_DspPressure { get; set; }
  25. [Description("画胶气压-3")]
  26. public double EW3_DspPressure { get; set; }
  27. [Description("画胶气压-4")]
  28. public double EW4_DspPressure { get; set; }
  29. [Description("采集时间")]
  30. public DateTime RecTime { get; set; }
  31. }
  32. }