using Magicodes.ExporterAndImporter.Core; using Magicodes.ExporterAndImporter.Excel; namespace Entity.Dto; [ExcelExporter(Name = "PLC DID NOT PROCESS ALARM LOG", TableStyle = OfficeOpenXml.Table.TableStyles.None, AutoFitAllColumn = true)] public class PlcEquipAlarmRecordDto2 { [ExporterHeader(DisplayName = "STATION NUMBER", IsBold = true)] public string StationNumber { get; set; }= "STATION 2"; [ExporterHeader(DisplayName = "Alarm Description", IsBold = true)] public string ErrorMsg { get; set; } [ExporterHeader(DisplayName = "ALARM START TIME", Width = 30, Format = "yyyy-MM-dd HH:mm:ss", AutoCenterColumn = true)] public DateTime? StartTime { get; set; } }