using AutoMapper; using DllEapEntity.OFILM; using System; using System.Collections.Generic; using System.ComponentModel; using System.Text; namespace DllEapEntity.Dtos { [AutoMap(typeof(MacEntity))] public class ExportMacEntity { [Description("园区")] public string Factory { get;set;} [Description("楼层")] public string Floor { get; set; } [Description("设备编号")] public string MacCode { get; set; } [Description("资产编号")] public string AssetCode { get; set; } [Description("设备名称")] public string MacName { get; set; } [Description("设备类型")] public string MacModel { get; set; } [Description("责任人姓名")] public string MEName { get; set; } [Description("责任人工号")] public string MENo { get; set; } [Description("主管姓名")] public string WorkShopName { get; set; } [Description("主管工号")] public string WorkShopNo { get; set; } [Description("到厂时间")] public DateTime EnterDate { get; set; } [Description("验收时间")] public DateTime CheckDate { get; set; } [Description("有效时间")] public DateTime ValidDate { get; set; } } }