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.
31 lines
981 B
C#
31 lines
981 B
C#
using Khd.Core.Domain.Dto.agv;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Khd.Core.Domain.Dto.webapi
|
|
{
|
|
public class AgvStatusDto
|
|
{
|
|
public string code { get; set; }
|
|
public List<WcsAgvStatus> data { get; set; }
|
|
}
|
|
|
|
public class cardStatus
|
|
{
|
|
public string battery { get; set; }
|
|
public string exclType { get; set; }
|
|
public string mapCode { get; set; }
|
|
public string online { get; set; }
|
|
public string[] path { get; set; }
|
|
public string podCode { get; set; }
|
|
public string podDir { get; set; }
|
|
public string posX { get; set; }
|
|
public string posY { get; set; }
|
|
public string robotCode { get; set; }
|
|
public string robotDir { get; set; }
|
|
public string robotIp { get; set; }
|
|
public string speed { get; set; }
|
|
public string status { get; set; }
|
|
public string stop { get; set; }
|
|
public string timestamp { get; set; }
|
|
}
|
|
} |