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.
38 lines
1.2 KiB
C#
38 lines
1.2 KiB
C#
using System.Collections.Generic;
|
|
using Sln.Wcs.HikRoBotSdk.Dto.Common;
|
|
|
|
namespace Sln.Wcs.HikRoBotSdk.Dto.QueryTask
|
|
{
|
|
public class QueryTaskResultDto
|
|
{
|
|
public string code { get; set; }
|
|
public string message { get; set; }
|
|
public QueryTaskResultData data { get; set; }
|
|
public string errorCode { get; set; }
|
|
public bool success { get; set; }
|
|
}
|
|
|
|
public class QueryTaskResultData
|
|
{
|
|
public string robotTaskCode { get; set; }
|
|
public string taskType { get; set; }
|
|
public List<TargetRoute> targetRoute { get; set; }
|
|
public int? initPriority { get; set; }
|
|
public string deadline { get; set; }
|
|
public string taskStatus { get; set; }
|
|
public int? currentSeq { get; set; }
|
|
public string singleRobotCode { get; set; }
|
|
public WaringInfo waring { get; set; }
|
|
public object extra { get; set; }
|
|
}
|
|
|
|
public class WaringInfo
|
|
{
|
|
public string taskWarnCode { get; set; }
|
|
public string singleRobotCode { get; set; }
|
|
public string startTime { get; set; }
|
|
public string errorCode { get; set; }
|
|
public string errorMsg { get; set; }
|
|
}
|
|
}
|