Zhang-Hong-Lin
2025-05-27 7924008bfdcfc7a73428826fc10ae475b1f71353
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_Tasks.OHT
{
    public class OHTTaskCommand
    {
        /// <summary>
        /// 心跳
        /// </summary>
        public short W_HeartBeat { get; set; }
 
        /// <summary>
        /// 任务类型
        /// </summary>
        public short W_Task_Type { get; set; }
        /// <summary>
        /// 装车层数
        /// </summary>
        public short W_Load_Layer { get; set; }
 
        /// <summary>
        /// 取货行
        /// </summary>
        public short W_Pick_Line { get; set; }
 
        /// <summary>
        /// 取货列
        /// </summary>
        public short W_Pick_Column { get; set; }
 
        /// <summary>
        /// 取货层
        /// </summary>
        public short W_Pick_Layer { get; set; }
 
 
        /// <summary>
        /// 放货行
        /// </summary>
        public short W_Put_Line { get; set; }
 
        /// <summary>
        /// 放货列
        /// </summary>
        public short W_Put_Column { get; set; }
 
        /// <summary>
        /// 放货层
        /// </summary>
        public short W_Put_Layer { get; set; }
 
        /// <summary>
        /// 1号是否抓取
        /// </summary>
        public short W_Catch_1 { get; set; }
 
        /// <summary>
        /// 2号是否抓取
        /// </summary>
        public short W_Catch_2 { get; set; }
 
        /// <summary>
        /// 任务号
        /// </summary>
        public int W_TaskNumber { get; set; }
 
        /// <summary>
        /// 校验值  (任务类型+装车层数+取行+取列+取层+放行+放列+放层+W_Catch_1+W_Catch_2+任务号)
        /// </summary>
        public int W_CheckValue { get; set; }
 
        /// <summary>
        /// 确认信号
        /// </summary>
        public short W_ConfirmSignal { get; set; }
 
        /// <summary>
        /// 行车锁定剔除位
        /// </summary>
        public bool W_ZXJ_LockLocation { get; set; }
 
        /// <summary>
        /// 行车锁定规整机
        /// </summary>
        public bool W_GZJ_LockGZJ { get; set; }
 
        /// <summary>
        /// 重量读取成功
        /// </summary>
        public bool R_WeightSuccess { get; set; }
 
        /// <summary>
        /// 厚度读取成功
        /// </summary>
        public bool R_ThicknessSuccess { get; set; }
    }
}