刘磊
2024-11-25 9140aa3f9e07347008d4853051b08b680daf125d
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
using System.ComponentModel;
 
namespace WIDESEA_Common
{
    public enum StatusChangeTypeEnum
    {
        /// <summary>
        /// 自动入库
        /// </summary>
        [Description("自动入库")]
        AutomaticStorage = 1,
 
        /// <summary>
        /// 自动出库
        /// </summary>
        [Description("自动出库")]
        AutomaticDelivery = 2,
 
        /// <summary>
        /// 人工操作
        /// </summary>
        [Description("人工操作")]
        ManualOperation = 3
    }
}