肖洋
2024-11-29 8c14b292f460c55e41e1ff1ba3b8487d98442384
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
    }
}