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.
26 lines
790 B
26 lines
790 B
4 years ago
|
using System.ComponentModel;
|
||
|
|
||
|
namespace CK.SCP.Models.Enums
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 停线类型。也就是停线原因。
|
||
|
/// </summary>
|
||
|
public enum StopLineType
|
||
|
{
|
||
|
[Description("质量问题")] QA = 1,
|
||
|
[Description("设备问题")] EQ = 2,
|
||
|
[Description("缺料")] Mat = 3,
|
||
|
[Description("工艺设计问题")] ProcessDesign = 4,
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// 停线事故等级。枚举值必须从小到大排列.以后要改的话,必须注意。要逐级触发系统动作的。
|
||
|
/// </summary>
|
||
|
public enum StopLineLevel
|
||
|
{
|
||
|
[Description("轻度")] Minimum = 100,
|
||
|
[Description("一般")] Commonly = 200,
|
||
|
[Description("严重")] Serious = 300,
|
||
|
[Description("重大")] Weighty = 400,
|
||
|
}
|
||
|
}
|