You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
702 B
C#

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> 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<string> robotCode { get; set; }
public int? interrupt { get; set; }
public string robotTaskCode { get; set; }
public string groupCode { get; set; }
public ExtraInfo extra { get; set; }
}
}