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.

62 lines
1.5 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Collections.Generic;
using System.Text;
namespace SlnMesnac.Model.AirportApiEntity
{
public class ManipulatorWorkDoneEntity
{
/// <summary>
/// 机械臂编号
/// </summary>
public string ManipulatorNo { get; set; }
/// <summary>
/// 运载小车编号
/// </summary>
public string CarryAGVNo { get; set; }
/// <summary>
/// 传送带编号
/// </summary>
public string ConveyorNo { get; set; }
/// <summary>
/// 此次抓取数量
/// </summary>
public int NowCarryNumber { get; set; }
/// <summary>
/// 小车装载数量
/// </summary>
public int CarrierLoadNumber { get; set; }
/// <summary>
/// 此次工作总抓取数量
/// </summary>
public int AllCarryNumber { get; set; }
/// <summary>
/// 装载方向1机械臂小车2装载小车
/// </summary>
public string LoadLocation { get; set; }
/// <summary>
/// 工作是否结束0未结束1结束
/// </summary>
public string WorkIsDone { get; set; }
/// <summary>
/// 任务编号
/// </summary>
public string TaskNo { get; set; }
/// <summary>
/// 信号发送时间
/// </summary>
public string SignalSendTime { get; set; }
}
}