xiazhengtongxue
2026-02-09 e81c782b3e7a632ffb8e32be56fce931a8c89ae6
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
    }
}