222
schangxiang@126.com
2024-12-11 b07eb132b5886122d4d154cd163485af611ebc6a
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace iWareModel
{
    /// <summary>
    /// 站点枚举
    /// </summary>
    public enum StationLocationEnum
    {
        /// <summary>
        /// 269工位
        /// </summary>
        首次扫码工位 = 100,
 
        /// <summary>
        /// 清灰,洗板后工位
        /// </summary>
        BZ01 = 101,
 
        /// <summary>
        /// 补板后工位
        /// </summary>
        BZ39 = 102,
 
        /// <summary>
        /// 叠版工位
        /// </summary>
        BZ12 = 103,
 
        /// <summary>
        /// 合包工位
        /// </summary>
        BZ21 = 104,
        /// <summary>
        /// 齐套验证工位
        /// </summary>
        BZ30 = 105,
 
        /// <summary>
        /// 裁纸机工位
        /// </summary>
        BZ3007 = 106
    }
}