ExportMacEntity.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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(MacEntity))]
  10. public class ExportMacEntity
  11. {
  12. [Description("园区")]
  13. public string Factory { get;set;}
  14. [Description("楼层")]
  15. public string Floor { get; set; }
  16. [Description("设备编号")]
  17. public string MacCode { get; set; }
  18. [Description("资产编号")]
  19. public string AssetCode { get; set; }
  20. [Description("设备名称")]
  21. public string MacName { get; set; }
  22. [Description("设备类型")]
  23. public string MacModel { get; set; }
  24. [Description("责任人姓名")]
  25. public string MEName { get; set; }
  26. [Description("责任人工号")]
  27. public string MENo { get; set; }
  28. [Description("主管姓名")]
  29. public string WorkShopName { get; set; }
  30. [Description("主管工号")]
  31. public string WorkShopNo { get; set; }
  32. [Description("到厂时间")]
  33. public DateTime EnterDate { get; set; }
  34. [Description("验收时间")]
  35. public DateTime CheckDate { get; set; }
  36. [Description("有效时间")]
  37. public DateTime ValidDate { get; set; }
  38. }
  39. }