schangxiang@126.com
2025-09-19 9be9c3784b2881a3fa25e93ae2033dc2803c0ed0
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace SiemenDevice.Model
{
    public class ROpcReadItem
    {
        /// <summary>
        /// 心跳
        /// </summary>
        public string HandShake { get; set; }
        /// <summary>
        /// Rgv编号
        /// </summary>
        public string RgvNo { get; set; }
 
        /// <summary>
        /// 是否有报警
        /// </summary>
        public string Alarm { get; set; }
        /// <summary>
        /// 报警代码
        /// </summary>
        public string AlarmCode { get; set; }
 
        /// <summary>
        /// 是否有货
        /// </summary>
        public string Loaded { get; set; }
        /// <summary>
        /// 任务完成信号
        /// </summary>
        public string TaskFinish { get; set; }
        /// <summary>
        /// 任务号
        /// </summary>
        public string TaskNo { get; set; }
        /// <summary>
        /// 起始站点
        /// </summary>
        public string SPos { get; set; }
        /// <summary>
        /// 目标站点
        /// </summary>
        public string TPos { get; set; }
        /// <summary>
        /// Rgv位置
        /// </summary>
        public string RgvPosition { get; set; }
        /// <summary>
        /// Rgv状态
        /// </summary>
        public string State { get; set; }
        /// <summary>
        /// Rgv模式
        /// </summary>
        public string Mode { get; set; }
        /// <summary>
        /// 任务接收成功信号
        /// </summary>
        public string Ack { get; set; }
 
        /// <summary>
        /// 急停
        /// </summary>
        public string EStop { get; set; }
        /// <summary>
        /// 其实站点
        /// </summary>
        public string StartPos { get; set; }
        /// <summary>
        /// 目标站点
        /// </summary>
        public string EndPos { get; set; }
 
        /// <summary>
        /// 任务完成确认
        /// </summary>
        public string AckTaskFinish { get; set; }
        /// <summary>
        /// 设备复位
        /// </summary>
        public string Reset { get; set; }
 
        /// <summary>
        /// 任务下完成信号(1小托盘;2大托盘)
        /// </summary>
        public string PallType { get; set; }
        /// <summary>
        /// 任务下完成信号
        /// </summary>
        public string Stb { get; set; }
        public ROpcReadItem()
        {
 
            HandShake = "DB600.0";
            Alarm = "DB600.8.0";
            AlarmCode = "DB600.10";
            Loaded = "DB600.4.0";
            TaskFinish = "DB600.24.1";
            TaskNo = "DB600.12";
            SPos = "DB600.16";
            TPos = "DB600.20";
            RgvPosition = "DB600.26";
            State = "DB600.6";
            Mode = "DB600.2";
            Ack = "DB600.24.0";
 
 
            EStop = "DB601.8.0";
            StartPos = "DB601.4";
            EndPos = "DB601.6";
            AckTaskFinish = "DB601.8.3";
            Reset = "DB601.8.1";
            Stb = "DB601.8.2";
            PallType = "DB601.10";
 
        }
 
    }
}