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.
36 lines
944 B
C#
36 lines
944 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Sln.Wcs.HikRoBotSdk.Dto.Common
|
|
{
|
|
public class TargetRoute
|
|
{
|
|
public string type { get; set; }
|
|
public string code { get; set; }
|
|
public string operation { get; set; }
|
|
public string robotType { get; set; }
|
|
public List<string> robotCode { get; set; }
|
|
public ExtraInfo extra { get; set; }
|
|
}
|
|
|
|
public class AngleInfo
|
|
{
|
|
public string type { get; set; }
|
|
public string code { get; set; }
|
|
}
|
|
|
|
public class CarrierInfo
|
|
{
|
|
public string carrierType { get; set; }
|
|
public string carrierCode { get; set; }
|
|
public int? layer { get; set; }
|
|
}
|
|
|
|
public class ExtraInfo
|
|
{
|
|
public AngleInfo angleInfo { get; set; }
|
|
public List<CarrierInfo> carrierInfo { get; set; }
|
|
public string crossVisionDoor { get; set; }
|
|
public string pickStationCode { get; set; }
|
|
}
|
|
}
|