EquipmentAlarmRecordCountsExcelModel.cs
1.01 KB
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.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HHECS.Model.ExcelModels
{
/// <summary>
/// 报警统计导出
/// </summary>
public class EquipmentAlarmRecordCountsExcelModel
{
[Description("设备编码")]
public string EquipmentCode { get; set; }
[Description("设备名称")]
public string EquipmentName { get; set; }
[Description("设备属性编码")]
public string EquipmentPropCode { get; set; }
[Description("设备属性名称")]
public string EquipmentPropName { get; set; }
[Description("报警信息")]
public string Alarm { get; set; }
[Description("统计次数")]
public int? Counts { set; get; }
[Description("开始时间")]
public DateTime? BeginDateTime { set; get; }
[Description("结束时间")]
public DateTime? EndDateTime { set; get; }
}
}