You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
429 B
14 lines
429 B
using System.ComponentModel;
|
|
|
|
namespace CK.SCP.Models.Enums
|
|
{
|
|
public enum InspectionType
|
|
{
|
|
//[Description("未知")] Unknow = 0,
|
|
[Description("首检")] InspectionFirst = 1,
|
|
[Description("巡检")] InspectionMed = 2,
|
|
[Description("末检")] InspectionLast = 3,
|
|
[Description("设备点检")] CheckEquipment = 4,
|
|
[Description("产品点检")] CheckProduction = 5,
|
|
}
|
|
}
|
|
|