MachineExportDto.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. using AutoMapper;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Text;
  6. namespace DllEapEntity.Dtos.Export
  7. {
  8. /// <summary>
  9. /// 机台导出实体
  10. /// </summary>
  11. [AutoMap(typeof(Machine))]
  12. public class MachineExportDto
  13. {
  14. /// <summary>
  15. /// 厂家
  16. /// </summary>
  17. [Description("厂商")]
  18. public string SupplierFCode { get; set; }
  19. [Description("代码")]
  20. public string FCode { get; set; }
  21. [Description("名称")]
  22. public string FName { get; set; }
  23. [Description("位置")]
  24. public string RegionName { get; set; }
  25. [Description("IP地址")]
  26. public string IPAddress { get; set; }
  27. [Description("端口")]
  28. public int FPort { get; set; }
  29. [Description("MAC地址")]
  30. public string MacAddress { get; set; }
  31. [Description("调程模式")]
  32. public string CallPModeFName { get; set; }
  33. [Description("软件版本")]
  34. public string FVersion { get; set; }
  35. }
  36. }