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.
17 lines
515 B
C#
17 lines
515 B
C#
using Sln.Wcs.HikRoBotSdk.Dto.Common;
|
|
|
|
namespace Sln.Wcs.HikRoBotSdk.Dto.GbCancelTask
|
|
{
|
|
public class GbCancelTaskDto
|
|
{
|
|
public string robotTaskCode { get; set; }
|
|
public string cancelType { get; set; }
|
|
public string carrierCode { get; set; }
|
|
public string robotCode { get; set; }
|
|
public string reason { get; set; }
|
|
public string returnTaskType { get; set; }
|
|
public TargetRoute targetRoute { get; set; }
|
|
public object extra { get; set; }
|
|
}
|
|
}
|