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
| using System;
| using System.Collections.Generic;
| using System.Linq;
| using System.Text;
| using System.Threading.Tasks;
|
| namespace Pcb.Common.Enum
| {
| [Note("子料号")]
| public enum EnumProSubCardInfoStatus
| {
| /// <summary>
| /// 生产中
| /// </summary>
| [Note("生产中")]
| InProduction = 10,
|
| /// <summary>
| /// 完成
| /// </summary>
| [Note("完成")]
| Complete = 20,
|
| /// <summary>
| /// 作废
| /// </summary>
| [Note("作废")]
| Cancel = 30,
|
| /// <summary>
| /// 暂停
| /// </summary>
| [Note("暂停")]
| Pause = 40,
| }
| }
|
|