yanjinhui
2026-03-20 5cbf9d0d05f6f2357c71f4e585441fdb4fc51d89
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
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_DTO.AGV.HIKROBOT
{
    /// <summary>
    /// 海康任务下发
    /// </summary>
    public class HIKROBOTTaskSubmit
    {
        /// <summary>
        /// 任务类型
        /// </summary>
        public string taskType { get; set; }
        /// <summary>
        /// 执行步骤集合
        /// </summary>
        public List<TargetRouteDto> targetRoute { get; set; } = new List<TargetRouteDto>();
 
        /// <summary>
        /// 任务优先级
        /// </summary>
        public int? initPriority { get; set; }
 
        /// <summary>
        /// 任务截止时间
        /// </summary>
        public string deadline { get; set; }
 
        /// <summary>
        /// 机器人选择范围类型
        /// </summary>
        public string robotType { get; set; }
 
        /// <summary>
        /// 机器人资源唯一标识
        /// </summary>
        //public List<string> robotCode { get; set; } = new List<string>();
 
        /// <summary>
        /// 能否打断
        /// 1:可打断;
        /// 0:不可打断
        /// </summary>
        public int? interrupt { get; set; } = 0;
 
        /// <summary>
        /// 外部任务唯一编号
        /// </summary>
        public string robotTaskCode { get; set; }
 
        /// <summary>
        /// 任务组编号
        /// </summary>
        public string groupCode { get; set; }
 
        /// <summary>
        /// 自定义扩展字段
        /// </summary>
        public object extra { get; set; }
    }
 
 
    
}