using AutoMapper; using System; using System.Collections.Generic; using System.ComponentModel; using System.Text; namespace DllEapEntity.Dtos { [AutoMap(typeof(AlarmCode))] public class ExportAlarmCode { [Description("园区")] public string FactoryName { get; set; } [Description("厂房")] public string FloorName { get; set; } [Description("楼层")] public string PlantName { get; set; } [Description("制程代码")] public string pcode { get; set; } [Description("设备类型")] public string macmodel { get; set; } [Description("设备编号")] public string maccode { get; set; } [Description("报警代码")] public string name { get; set; } [Description("报警时间")] public DateTime ptime { get; set; } [Description("报警描述")] public string description { get; set; } [Description("中文描述")] public string ChAlarm { get; set; } } }