schangxiang@126.com
2024-09-04 65950aebce26bc1b2263f32863715a6c289e527e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System.ComponentModel;
 
namespace iWare.Wms.Core
{
    /// <summary>
    /// 日志类型
    /// </summary>
    public enum PieceLogTypeEnum
    {
        /// <summary>
        /// 正常
        /// </summary>
        [Description("正常")]
        正常 = 0,
 
        /// <summary>
        /// 读码值异常
        /// </summary>
        [Description("读码值异常")]
        读码值异常 = 1,
    }
}