wangxinhui
2026-03-26 ad05ef2341fe19a4220f7ada1987636f9ec4a1a9
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
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,
        /// <summary>
        /// 出库任务完成
        /// </summary>
        [Description("入库任务取消")]
        InboundCancelled
    }
}