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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
| using System;
| using System.Collections.Generic;
| using System.ComponentModel;
| using System.Linq;
| using System.Text;
| using System.Threading.Tasks;
|
| namespace WIDESEA_Core.Enums
| {
| /// <summary>
| /// 货位状态
| /// </summary>
| public enum LocationStatusEnum
| {
| /// <summary>
| /// 空闲
| /// </summary>
| [Description("空闲")]
| Free = 0,
|
| /// <summary>
| /// 锁定
| /// </summary>
| [Description("锁定")]
| Lock = 1,
|
| /// <summary>
| /// 有货
| /// </summary>
| [Description("有货")]
| InStock = 2,
|
| /// <summary>
| /// 空托锁定
| /// </summary>
| [Description("空托锁定")]
| PalletLock = 98,
|
| /// <summary>
| /// 空托盘
| /// </summary>
| [Description("空托盘")]
| Pallet = 99
| }
|
| public enum EnableStatusEnum
| {
| /// <summary>
| /// 正常
| /// </summary>
| [Description("正常")]
| Normal = 0,
|
| /// <summary>
| /// 只入
| /// </summary>
| [Description("只入")]
| OnlyIn = 1,
|
| /// <summary>
| /// 只出
| /// </summary>
| [Description("只出")]
| OnlyOut = 2,
|
| /// <summary>
| /// 禁用
| /// </summary>
| [Description("禁用")]
| Disable = 3
| }
|
| public enum LocationTypeEnum
| {
| /// <summary>
| /// 立库
| /// </summary>
| [Description("立库货位")]
| Cube = 1,
|
| /// <summary>
| /// 平库
| /// </summary>
| [Description("平库货位")]
| Flat = 2,
| /// <summary>
| /// 成品出库站台
| /// </summary>
| [Description("成品出库站台")]
| FinishedOut = 3,
| /// <summary>
| /// 原材料出库站台
| /// </summary>
| [Description("原材料出库站台")]
| RawOut = 4,
| /// <summary>
| /// 空托出库站台
| /// </summary>
| [Description("空托出库站台")]
| EmptyOut = 5,
| /// <summary>
| /// 成品入库站台
| /// </summary>
| [Description("成品入库站台")]
| FinishedIn = 6,
| /// <summary>
| /// 原材料入库站台
| /// </summary>
| [Description("原材料入库站台")]
| RawIn = 7,
| /// <summary>
| /// 空托入站台
| /// </summary>
| [Description("空托入站台")]
| EmptyIn = 8,
| /// <summary>
| /// 空托货位
| /// </summary>
| [Description("空托货位")]
| EmptyCube = 9,
| /// <summary>
| /// 原材料货位
| /// </summary>
| [Description("原材料货位")]
| MaterialsCube = 10,
| /// <summary>
| /// 成品货位
| /// </summary>
| [Description("成品货位")]
| ProductCube = 11,
| /// <summary>
| /// 不合格品货位
| /// </summary>
| [Description("不合格品货位")]
| ProductStBhg = 12,
| }
|
| public enum LocationChangeType
| {
|
| }
| }
|
|