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.
|
|
|
|
|
using SlnMesnac.Model.domain;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
|
|
namespace SlnMesnac.Model.dto.webapi
|
|
|
|
|
|
{
|
|
|
|
|
|
public class AgvStatusDto
|
|
|
|
|
|
{
|
|
|
|
|
|
public string reqCode { get; set; }
|
|
|
|
|
|
public string message { get; set; }
|
|
|
|
|
|
public string code { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public List<CardStatus> 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; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|