MachineRecipeExportDto.cs 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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.Export
  8. {
  9. /// <summary>
  10. /// 机台上线维护导出
  11. /// </summary>
  12. [AutoMap(typeof(MachineInfo))]
  13. public class MachineRecipeExportDto
  14. {
  15. [Description("设备ID")]
  16. public string MacCode { get; set; }
  17. [Description("机台编号")]
  18. public string MacNumber { get; set; }
  19. [Description("设备类型")]
  20. public string MacModelCode { get; set; }
  21. [Description("工序")]
  22. public string PCode { get; set; }
  23. [Description("IP地址")]
  24. public string IpAddress { get; set; }
  25. [Description("MAC地址")]
  26. public string MacAddress { get; set; }
  27. [Description("实际IP")]
  28. public string RealIp { get; set; }
  29. [Description("园区")]
  30. public string Factory { get; set; }
  31. [Description("厂房")]
  32. public string Plant { get; set; }
  33. [Description("楼层车间")]
  34. public string Floor { get; set; }
  35. [Description("线体")]
  36. public string Line { get; set; }
  37. [Description("AP服务器")]
  38. public string AppServerCode { get; set; }
  39. [Description("客户")]
  40. public string Customer { get; set; }
  41. [Description("项目")]
  42. public string Project { get; set; }
  43. [Description("机种")]
  44. public string Recipe { get; set; }
  45. [Description("小程序版本")]
  46. public string AppletV { get; set; }
  47. [Description("小程序状态")]
  48. public string AppletSName { get; set; }
  49. [Description("连接状态")]
  50. public string StatusName { get; set; }
  51. [Description("维护时间")]
  52. public DateTime ModTime { get; set; }
  53. [Description("维护人")]
  54. public string ModName { get; set; }
  55. }
  56. }