ExportMacRecipeDto.cs 993 B

1234567891011121314151617181920212223242526272829303132
  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 ExportMacRecipeDto
  11. {
  12. [Description("设备编号")]
  13. public string MacCode { get; set; }
  14. [Description("设备类型")]
  15. public string PCode { get; set; }
  16. [Description("MAC地址")]
  17. public string MacAddress { get; set; }
  18. [Description("园区")]
  19. public string Factory { get; set; }
  20. [Description("楼层")]
  21. public string Floor { get; set; }
  22. [Description("最新程序名")]
  23. public string ProgramName { get; set; }
  24. [Description("连接状态")]
  25. public string StatusName { get; set; }
  26. [Description("开始时间")]
  27. public DateTime STime { get; set; }
  28. [Description("结束时间")]
  29. public DateTime ETime { get; set; }
  30. }
  31. }