12345678910111213141516171819202122232425262728293031323334 |
- using AutoMapper;
- using DllEapEntity.OFILM;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Text;
- namespace DllEapEntity.Dtos
- {
- [AutoMap(typeof(MacRecipeDto))]
- public class ExportIP
- {
- [Description("设备ID")]
- public string MacCode { get; set; }
- [Description("设备类型")]
- public string PCode { get; set; }
- [Description("系统IP")]
- public string IpAddress { get; set; }
- [Description("实际IP")]
- public string RealIp { get; set; }
- [Description("MAC地址")]
- public string MacAddress { get; set; }
- [Description("园区")]
- public string Factory { get; set; }
- [Description("楼层")]
- public string Floor { get; set; }
- [Description("软件版本")]
- public string FVersion { get; set; }
- [Description("最新程序名")]
- public string ProgramName { get; set; }
- [Description("连接状态")]
- public string StatusName { get; set; }
- }
- }
|