dengjunjie
2024-10-24 0fb0f17319ecf71d66b96a6acfd07f754be9443e
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEAWCS_QuartzJob.DeviceBase;
 
namespace WIDESEAWCS_Tasks.ShuttleCarJob
{
    public class ShuttleCarTaskCommandW : DeviceCommand
    {
        /// <summary>
        /// 任务类型
        /// </summary>
        public short TaskType { get; set; }
        /// <summary>
        /// 车体方向
        /// 1:A面
        /// 2:B面
        /// </summary>
        public short Direction { get; set; }
        /// <summary>
        /// 任务号
        /// </summary>
        public int TaskNum { get; set; }
    }
}