using System.Collections.Generic; using Sln.Wcs.HikRoBotSdk.Dto.Common; namespace Sln.Wcs.HikRoBotSdk.Dto.GbTaskSubmit { public class GbTaskSubmitDto { public string taskType { get; set; } public List targetRoute { get; set; } public int? initPriority { get; set; } public string deadline { get; set; } public string expectedStartTime { get; set; } public string robotType { get; set; } public List robotCode { get; set; } public int? interrupt { get; set; } public string robotTaskCode { get; set; } public string groupCode { get; set; } public ExtraInfo extra { get; set; } } }