zhanghonglin
6 天以前 8f9b9411ca279670bd85fcfa7763987295ed9abf
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_Tasks.DBName
{
    public enum ConveyorLineName
    {
        #region 读取
 
        /// <summary>
        /// 心跳
        /// </summary>
        R_HearBeat,
 
        /// <summary>
        /// 设备状态
        /// </summary>
        R_Status,
 
        /// <summary>
        /// 申请取(放)料
        /// </summary>
        R_Pick,
 
        /// <summary>
        /// 物料编号1
        /// </summary>
        R_NumberA,
 
        /// <summary>
        /// 物料编号2
        /// </summary>
        R_NumberB,
 
        /// <summary>
        /// 物料编号3
        /// </summary>
        R_NumberC,
 
        /// <summary>
        /// 物料编号4
        /// </summary>
        R_NumberD,
 
        #endregion
 
        #region 写入
 
        /// <summary>
        /// 心跳
        /// </summary>
        W_HearBeatD,
 
        /// <summary>
        /// 物料编号1
        /// </summary>
        W_NumberAD,
 
        /// <summary>
        /// 物料编号2
        /// </summary>
        W_NumberBD,
 
        /// <summary>
        /// 物料编号3
        /// </summary>
        W_NumberCD,
 
        /// <summary>
        /// 物料编号4
        /// </summary>
        W_NumberDD,
 
        /// <summary>
        /// 编号收到
        /// </summary>
        W_ReceivedD,
 
        #endregion
    }
}