using AutoMapper; using System; using System.Collections.Generic; using System.ComponentModel; using System.Text; namespace DllEapEntity.Dtos { [AutoMap(typeof(Ofilmcmk))] public class ExportOfilmcmk { [Description("课别") ] public string Classes { get; set; } [Description("楼层")] public string floor { get; set; } [Description("客户")] public string customer { get; set; } [Description("设备ID")] public string macID { get; set; } [Description("位置")] public string position { get; set; } [Description("X")] public double XCmk { get; set; } [Description("Y")] public double YCmk { get; set; } [Description("T")] public double TCmk { get; set; } [Description("X")] public double XP { get; set; } [Description("Y")] public double YP { get; set; } [Description("T")] public double TP { get; set; } [Description("附件")] public string enclosureSrc { get; set; } [Description("维护人")] public string ModName { get; set; } [Description("维护日期")] public DateTime ModTime { get; set; } [Description("下次取值日期")] public DateTime NextTime { get; set; } } }