ExportIP.cs 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  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(MacRecipeDto))]
  10. public class ExportIP
  11. {
  12. [Description("设备ID")]
  13. public string MacCode { get; set; }
  14. [Description("设备类型")]
  15. public string PCode { get; set; }
  16. [Description("系统IP")]
  17. public string IpAddress { get; set; }
  18. [Description("实际IP")]
  19. public string RealIp { get; set; }
  20. [Description("MAC地址")]
  21. public string MacAddress { get; set; }
  22. [Description("园区")]
  23. public string Factory { get; set; }
  24. [Description("楼层")]
  25. public string Floor { get; set; }
  26. [Description("软件版本")]
  27. public string FVersion { get; set; }
  28. [Description("最新程序名")]
  29. public string ProgramName { get; set; }
  30. [Description("连接状态")]
  31. public string StatusName { get; set; }
  32. }
  33. }