ExportLHAParametersnew.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233
  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(LHAParametersnew))]
  9. public class ExportLHAParametersnew
  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("画胶压力DS3")]
  22. public double EW1_DspPressure { get; set; }
  23. [Description("画胶压力DS4")]
  24. public double EW2_DspPressure { get; set; }
  25. [Description("画胶副压力DS1")]
  26. public double AEW1_DspPressure { get; set; }
  27. [Description("画胶副压力DS2")]
  28. public double AEW2_DspPressure { get; set; }
  29. [Description("采集时间")]
  30. public DateTime RecTime { get; set; }
  31. }
  32. }