bus_equipment_maintenance.cs
3.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
using System;
using SqlSugar;
namespace Hh.Mes.POJO.Entity
{
[SugarTable("bus_equipment_maintenance")]
public partial class bus_equipment_maintenance : base_Entity
{
/// <summary>
/// 主键
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int iD { get; set; }
/// <summary>
/// 设备ID
/// </summary>
[SugarColumn(Length = 100, ColumnDescription = "设备ID", IsNullable = true)]
public string equipmentID { get; set; }
/// <summary>
/// 维护类型(如:预测性、主动性)
/// </summary>
[SugarColumn(Length = 200, ColumnDescription = "维护类型(如:预测性、主动性)", IsNullable = true)]
public string maintenanceType { get; set; }
/// <summary>
/// 维护日期
/// </summary>
[SugarColumn(ColumnDescription = "维护日期", IsNullable = true)]
public DateTime maintenanceDate { get; set; }
/// <summary>
/// 维护描述
/// </summary>
[SugarColumn(Length = 1000, ColumnDescription = "维护描述", IsNullable = true)]
public string maintenanceDescription { get; set; }
/// <summary>
/// 巡检类型(如:定期巡检、临时巡检)
/// </summary>
[SugarColumn(Length = 200, ColumnDescription = "巡检类型(如:定期巡检、临时巡检)", IsNullable = true)]
public string inspectionType { get; set; }
/// <summary>
/// 巡检日期
/// </summary>
[SugarColumn(ColumnDescription = "巡检日期", IsNullable = true)]
public DateTime inspectionDate { get; set; }
/// <summary>
/// 巡检结果
/// </summary>
[SugarColumn(Length = 1000, ColumnDescription = "巡检结果", IsNullable = true)]
public string inspectionResult { get; set; }
/// <summary>
/// 技术员
/// </summary>
[SugarColumn(Length = 400, ColumnDescription = "技术员", IsNullable = true)]
public string technician { get; set; }
/// <summary>
/// 下次维护日期
/// </summary>
[SugarColumn(ColumnDescription = "下次维护日期", IsNullable = true)]
public DateTime nextMaintenanceDate { get; set; }
/// <summary>
/// 维护状态(如:已完成、待处理)
/// </summary>
[SugarColumn(Length = 200, ColumnDescription = "维护状态(如:已完成、待处理)", IsNullable = true)]
public string maintenanceStatus { get; set; }
/// <summary>
/// 预测性维护详情
/// </summary>
[SugarColumn(Length = 1000, ColumnDescription = "预测性维护详情", IsNullable = true)]
public string predictiveMaintenanceDetails { get; set; }
/// <summary>
/// 主动性维护详情
/// </summary>
[SugarColumn(Length = 1000, ColumnDescription = "主动性维护详情", IsNullable = true)]
public string proactiveMaintenanceDetails { get; set; }
/// <summary>
/// 备注
/// </summary>
[SugarColumn(Length = 1000, ColumnDescription = "备注", IsNullable = true)]
public string notes { get; set; }
}
}