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 ExportMacRecipeDto { [Description("设备编号")] public string MacCode { get; set; } [Description("设备类型")] public string PCode { get; set; } [Description("MAC地址")] public string MacAddress { get; set; } [Description("园区")] public string Factory { get; set; } [Description("楼层")] public string Floor { get; set; } [Description("最新程序名")] public string ProgramName { get; set; } [Description("连接状态")] public string StatusName { get; set; } [Description("开始时间")] public DateTime STime { get; set; } [Description("结束时间")] public DateTime ETime { get; set; } } }