dengjunjie
2025-05-20 be484c84a25d1f6c769e7b5e958048d745942e55
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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEA_Core.Enums
{
    /// <summary>
    /// 启禁状态
    /// </summary>
    public enum EnableEnum
    {
        /// <summary>
        /// 禁用
        /// </summary>
        [Description("禁用")]
        Disable = 0,
 
        /// <summary>
        /// 启用
        /// </summary>
        [Description("启用")]
        Enable = 1,
    }
 
 
    #region 库存状态
 
 
 
    #endregion 库存状态
 
    public enum OperateType
    {
        人工删除 = 1,
        自动删除 = 2,
        人工恢复 = 3,
        自动恢复 = 4,
        人工完成 = 5,
        自动完成 = 6,
        AGV删除 = 7,
    }
}