add
zongzhibin
2024-11-24 59575fe77af455478e81dff65e2e5e6979fdf7f6
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
46
47
48
49
50
 
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace iWareModel
{
    /// <summary>
    /// 设备的任务类型枚举
    /// </summary>
    public enum DeviceTaskTypeEnum
    {
        /// <summary>
        /// 组盘入库
        /// </summary>
        组盘入库 = 1,
 
        /// <summary>
        /// 出库
        /// </summary>
        出库 = 2,
 
        /// <summary>
        /// 空托转运到拆盘机入口
        /// </summary>
        空托转运到拆盘机入口 = 3,
 
        /// <summary>
        /// 空托转运到立体库
        /// </summary>
        空托转运到立体库 = 4,
 
        /// <summary>
        /// 空托缓存位转运 位置1009到位置1011
        /// </summary>
        空托缓存位转运 = 5,
 
        /// <summary>
        /// 立库空托到拆盘机入口 [EditBy shaocx,2022-04-13]
        /// </summary>
        立库空托到拆盘机入口 = 6,
 
        /// <summary>
        /// 拆盘机入口到拆盘机(1014到1020) [EditBy shaocx,2022-04-13]
        /// </summary>
        拆盘机入口到拆盘机 = 7
    }
}