1
huangxiaoqiang
23 小时以前 2d2d6bf8565f5b89fc9ee054bf6e62f9592f8673
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
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>
        RelocationNew = 300,
 
            /// <summary>
            /// 移库任务执行中
            /// </summary>
        SC_RelocationExecuting = 140,
 
        /// <summary>
        /// 移库任务完成
        /// </summary>
        SC_RelocationFinish = 145,
    }
 
}