Admin
4 天以前 bd6818fc9d40f343547bafca0743658f3c0379dc
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
43
44
45
46
47
48
49
50
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
 
namespace WIDESEA.Common
{
    public enum MaterielState
    {
        /// <summary>
        /// 可用
        /// </summary>
        //Normal,
        /// <summary>
        /// 冻结
        /// </summary>
        Freeze = 0,
 
        /// <summary>
        /// 锁定
        /// </summary>
        Locking,
 
        /// <summary>
        /// 解冻
        /// </summary>
        Unfreeze = 1,
 
        /// <summary>
        /// 良品
        /// </summary>
        [Description("GoodProduct")]
        GoodProduct = 1,
 
        /// <summary>
        /// 不良品
        /// </summary>
        DefictiveProduct,
 
        /// <summary>
        /// 待检
        /// </summary>
        Pedding,
 
        /// <summary>
        /// 异常
        /// </summary>
        Error,
    }
}