wanshenmean
2024-09-13 319e8729b47c96e3a3717c5a40cd5df867d65ce5
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
    }
}