dengjunjie
11 小时以前 90ac374a64e47e2bd97ee9245f4cafb50ad5dbbb
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_DTO.RGV.FOURBOT
{
    /// <summary>
    /// 更新四向车任务优先级
    /// </summary>
    public class UpdateAgvSXCTake: FOURBOTInfo
    {
        /// <summary>
        /// 任务ID
        /// </summary>
        public int taskID { get; set; }
 
 
        /// <summary>
        /// 优先级
        /// </summary>
        public int priority { get; set; }
    }
}