123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Net.Cache;
- using System.Text;
- namespace DllEapEntity.Dtos
- {
- public class MacProgramDto
- {
- public int Id { get; set; }
- public string MacId { get; set; }
- public string MacCode { get; set; }
- public string MacName { get; set; }
- public string MacModelCode { get; set; }
- public string MacModelName { get; set; }
- public string ProgramName { get; set; }
- public int MacModelId { get; set; }
- public string UploadMacCode { get; set; }
- public string FileOrgName { get; set; }
- public string FileInfoRemark { get; set; }
- public int? RegionId { get; set; }
- public string RegionName { get; set; }
- }
- }
|