generated from wenjy/SlnMesnac
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.
37 lines
786 B
C#
37 lines
786 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace SlnMesnac.Model.AirportApiEntity
|
|
{
|
|
public class ManipulatorStartWorkEntity
|
|
{
|
|
|
|
/// <summary>
|
|
/// 机械臂编号
|
|
/// </summary>
|
|
public string ManipulatorNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 运载小车编号
|
|
/// </summary>
|
|
public string CarryAGVNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 传送带编号
|
|
/// </summary>
|
|
public string ConveyorNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 任务编号
|
|
/// </summary>
|
|
public string TaskNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 信号发送时间
|
|
/// </summary>
|
|
public string SignalSendTime { get; set; }
|
|
|
|
}
|
|
}
|