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 System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace SlnMesnac.Model.AirportApiEntity
|
|
|
|
|
{
|
|
|
|
|
public class AGVCallSingalEntity
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// AGV编号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string AGVNo { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// AGV类型
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string AGVType { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 起始地编号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string StartingPointNo { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 目的地编号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string DestinationNo { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 任务编号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string TaskNo { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 信号发送时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string SignalSendTime { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|