1
z8018
2025-05-06 7da6f394864ba0412c1ac58ba7752862de7d3f3d
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_Tasks.Gantry
{
    public class GantryCommand
    {
        public int TakePoX { get; set; }
 
        public int TakePoY { get; set; }
 
        public int TakePoZ { get; set; }
 
        public int TakePoR { get; set; }
 
        public int PutPoX { get; set; }
 
        public int PutPoY { get; set; }
 
        public int PutPoZ { get; set; }
 
        public int PutPoR { get; set; }
 
        public int ItemLength { get; set; }
 
        public int ItemWidth { get; set; }
 
        public int ItemHeight { get; set; }
    }
}