EquipmentAlarmRecordEmailExcelModel.cs
1000 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
using System;
using System.ComponentModel;
namespace HHECS.Model.ExcelModels
{
/// <summary>
/// 报警导出(Email附件)
/// </summary>
public class EquipmentAlarmRecordEmailExcelModel
{
[Description("設備編碼")]
public string EquipmentCode { get; set; }
[Description("設備名稱")]
public string EquipmentName { get; set; }
[Description("故障内容")]
public string Alarm { get; set; }
[Description("停機時間")]
public string StopTime { get; set; }
[Description("時長")]
public string Duration { set; get; }
[Description("創建時間")]
public DateTime? Created { get; set; }
[Description("維修處理方法")]
public string HandleInfo { get; set; }
[Description("維修人員")]
public string HandleUser { get; set; }
[Description("防範對策")]
public string CounterMeasure { get; set; }
}
}