schangxiang@126.com
2024-11-21 60735779c303c2dd10feea45d7fd761103b225e0
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
using iWareSda.Devices._3_Station.StationModel;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace iWareSda
{
    //Station地址类
    public class StationDBForRead
    {
        #region 读取到的Station信息
        /// <summary>
        /// 心跳
        /// </summary>
        [Description("心跳")]
        public string R_HandShake { get; set; }
 
 
        /// <summary>
        /// 1015扫码
        /// </summary>
        [Description("1015扫码")]
        public string R_1015_Scan { get; set; }
 
        /// <summary>
        /// 1019扫码
        /// </summary>
        [Description("1019扫码")]
        public string R_1019_Scan { get; set; }
 
        /// <summary>
        /// 1019发动机的扫码
        /// </summary>
        [Description("1019发动机的扫码")]
        public string R_1019_CargoNoScan { get; set; }
 
        /// <summary>
        /// 1002扫码
        /// </summary>
        [Description("1002扫码")]
        public string R_1002_Scan { get; set; }
 
        /// <summary>
        /// 1004扫码
        /// </summary>
        [Description("1004扫码")]
        public string R_1004_Scan { get; set; }
 
        /// <summary>
        /// 1006扫码
        /// </summary>
        [Description("1006扫码")]
        public string R_1006_Scan { get; set; }
 
 
        /// <summary>
        /// 1007扫码
        /// </summary>
        [Description("1007扫码")]
        public string R_1007_Scan { get; set; }
 
        /// <summary>
        /// 1009的1层检测光电
        /// </summary>
        [Description("1009的1层检测光电")]
        public string R_1009_High1 { get; set; }
 
        /// <summary>
        /// 1009的2层检测光电
        /// </summary>
        [Description("1009的2层检测光电")]
        public string R_1009_High2 { get; set; }
 
        /// <summary>
        /// 1009的3层检测光电
        /// </summary>
        [Description("1009的3层检测光电")]
        public string R_1009_High3 { get; set; }
 
        /// <summary>
        /// Station任务完成
        /// </summary>
        [Description("Station任务完成")]
        public string R_Station_Finish { get; set; }
 
 
        /// <summary>
        /// Station当前坐标
        /// </summary>
        [Description("Station当前坐标")]
        public string R_Station_Coordinate { get; set; }
 
        #region 读的站点
 
        public List<StationDBForReadComm> R_StationForReadCommList { get; set; }
 
        #endregion
 
        
 
        #endregion
    }
}