EquipmentMaintainRecordExcelModel.cs
1.29 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
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 EquipmentMaintainRecordExcelModel
{
[Description("Id")]
public int? Id { get; set; }
[Description("设备名称")]
public string EquipmentName { get; set; }
[Description("操作名称")]
public string OperationName { get; set; }
[Description("目标部件")]
public string Targetcomponent { get; set; }
[Description("所需工具")]
public string Tools { get; set; }
[Description("操作描述")]
public string OperationDescription { get; set; }
[Description("维护状态")]
public int Status { get; set; }
[Description("备注")]
public string Remark { get; set; }
[Description("创建时间")]
public DateTime? Created { get; set; }
[Description("创建人")]
public string CreatedBy { get; set; }
[Description("更新时间")]
public DateTime? Updated { get; set; }
[Description("更新人")]
public string UpdatedBy { get; set; }
}
}