wangxinhui
昨天 6d3ea08855337c0cfcc60df2903d3431611c7097
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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_Common
{
    /// <summary>
    /// 货位状态变更类型
    /// </summary>
    public enum LocationChangeType
    {
        /// <summary>
        /// 入库分配
        /// </summary>
        [Description("入库分配")]
        InboundAssignLocation,
 
        /// <summary>
        /// 出库分配
        /// </summary>
        [Description("出库分配")]
        OutboundAssignLocation,
 
        /// <summary>
        /// 入库任务完成
        /// </summary>
        [Description("入库任务完成")]
        InboundCompleted,
 
        /// <summary>
        /// 出库任务完成
        /// </summary>
        [Description("出库任务完成")]
        OutboundCompleted
    }
}