TaskType.cs
899 Bytes
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 HHECS.Application.Enums
{
/// <summary>
/// 任务类型不再对业务进行区分
/// </summary>
public enum TaskType
{
/// <summary>
/// 入库
/// </summary>
[Description("入库")]
In = 100,
/// <summary>
/// 出库
/// </summary>
[Description("出库")]
Out = 300,
/// <summary>
/// 分拣
/// </summary>
[Description("分拣")]
Pick = 400,
/// <summary>
/// 移库
/// </summary>
[Description("移库")]
Shifting = 800,
/// <summary>
/// 换站
/// </summary>
[Description("换站")]
ToStation = 1000
}
}