dengjunjie
2024-11-27 5be0f5bc3b9a83a3b30c9915bd5309279d140244
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_Tasks.ProductionLineJob
{
    public enum ProductionLineDBName
    {
        #region MyRegion
        /// <summary>
        /// 托盘类型
        /// </summary>
        trayType,
        /// <summary>
        /// 产品数量
        /// </summary>
        productQty,
        /// <summary>
        /// 批号
        /// </summary>
        batchNo,
        /// <summary>
        /// 托盘条码
        /// </summary>
        trayBarcode,
        /// <summary>
        /// 站点编号
        /// </summary>
        station,
        /// <summary>
        /// 请求
        /// </summary>
        request,
        #endregion
 
        #region AGV交互信号
        /// <summary>
        /// AGV申请进入
        /// </summary>
        AGVRequestIn,
        /// <summary>
        /// 允许进入
        /// </summary>
        AllowIn,
        /// <summary>
        /// AGV离开
        /// </summary>
        AGVLeave
        #endregion
    }
}