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.

54 lines
1.3 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 ManipulatorStateRequestEntity
{
/// <summary>
/// 机械臂编号
/// </summary>
public string ManipulatorNo { get; set; }
/// <summary>
/// 信号发送时间
/// </summary>
public string SignalSendTime { get; set; }
}
public class ManipulatorStateResponseEntity
{
/// <summary>
/// 机械臂编号
/// </summary>
public string ManipulatorNo { get; set; }
/// <summary>
/// 机械臂报警状态1正常2故障
/// </summary>
public string ManipulatorAlarmState { get; set; }
/// <summary>
/// 机械臂工作状态1空闲2工作
/// </summary>
public string ManipulatorWorkState { get; set; }
/// <summary>
/// 报警信息
/// </summary>
public string AlarmText { get; set; }
/// <summary>
/// 任务编号
/// </summary>
public string TaskNo { get; set; }
/// <summary>
/// 信号发送时间
/// </summary>
public string SignalSendTime { get; set; }
}
}