EquipmentMaintainStatus.cs
846 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.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HHECS.Model.Enums
{
/// <summary>
/// 设备维护记录的状态
/// </summary>
public enum EquipmentMaintainStatus
{
/// <summary>
///等待保养
/// </summary>
[Description("等待保养")]
UnMaintain = 10,
/// <summary>
/// 保养逾期
/// </summary>
[Description("保养逾期")]
MaintainDelay = 15,
///// <summary>
///// 设备故障
///// </summary>
//[Description("设备故障")]
//Breakdown = 20,
/// <summary>
/// 已保养
/// </summary>
[Description("已保养")]
Maintained = 30,
}
}