You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
713 B
19 lines
713 B
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; }
|
|
} |