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.
15 lines
446 B
C#
15 lines
446 B
C#
|
3 weeks ago
|
namespace Sln.Wcs.HikRoBotSdk.Dto.PreTask
|
||
|
|
{
|
||
|
|
public class PreTaskDto
|
||
|
|
{
|
||
|
|
public string siteCode { get; set; }
|
||
|
|
public string nextTaskTime { get; set; }
|
||
|
|
public string robotType { get; set; }
|
||
|
|
public int? priority { get; set; }
|
||
|
|
public int? taskCount { get; set; }
|
||
|
|
public int? capacityCount { get; set; }
|
||
|
|
public string amrDir { get; set; }
|
||
|
|
public object extra { get; set; }
|
||
|
|
}
|
||
|
|
}
|