MacProgramDto.cs 796 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Net.Cache;
  5. using System.Text;
  6. namespace DllEapEntity.Dtos
  7. {
  8. public class MacProgramDto
  9. {
  10. public int Id { get; set; }
  11. public string MacId { get; set; }
  12. public string MacCode { get; set; }
  13. public string MacName { get; set; }
  14. public string MacModelCode { get; set; }
  15. public string MacModelName { get; set; }
  16. public string ProgramName { get; set; }
  17. public int MacModelId { get; set; }
  18. public string UploadMacCode { get; set; }
  19. public string FileOrgName { get; set; }
  20. public string FileInfoRemark { get; set; }
  21. public int? RegionId { get; set; }
  22. public string RegionName { get; set; }
  23. }
  24. }