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
| using System;
| using System.Collections.Generic;
| using System.ComponentModel;
| using System.Linq;
| using System.Text;
| using System.Threading.Tasks;
|
| namespace WIDESEAWCS_DTO.Enum
| {
| public enum TaskRelocationStatusEnum
| {
| /// <summary>
| /// 新建移库任务
| /// </summary>
| [Description("新建移库任务")]
| RelocationNew = 300,
|
| /// <summary>
| /// 移库任务执行中
| /// </summary>
| [Description("移库任务执行中")]
| RelocationExecuting = 145,
|
| /// <summary>
| /// 移库任务完成
| /// </summary>
| [Description("移库任务取消")]
| RelocationFinish = 310,
|
| /// <summary>
| /// 移库任务取消
| /// </summary>
| [Description("移库任务取消")]
| RelocationCancel = 320,
| }
|
| }
|
|