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
| using System;
| using System.Collections.Generic;
| using System.ComponentModel;
| using System.Linq;
| using System.Text;
| using System.Threading.Tasks;
|
| namespace iWare.Wms.Core.Enum
| {
| public enum EnumQualityErrorInfoType
| {
| /// <summary>
| /// 加工原因
| /// </summary>
| [Description("加工原因")]
| ProcessingReasons = 1,
|
| /// <summary>
| /// 审核通过
| /// </summary>
| [Description("物料原因")]
| ItemReasons = 2,
|
| /// <summary>
| /// 设备原因
| /// </summary>
| [Description("设备原因")]
| DeviceReasons = 3,
|
| /// <summary>
| /// 超差
| /// </summary>
| [Description("超差")]
| OutOfTolerance = 4,
|
| /// <summary>
| /// 其他
| /// </summary>
| [Description("其他")]
| Other = 5,
| }
| }
|
|