AHTC/RGD/RGD.HaiRouAPI/HaiRouModel/ErrorReport.cs

58 lines
1.8 KiB
C#
Raw Normal View History

2025-05-19 09:22:33 +08:00
/*************************************************************************************
*
* : ErrorReport
* :
* :
* Du
* 2022/8/1 9:12:07
*************************************************************************************/
namespace RGD.HaiRouAPI.HaiRouModel
{
public class ErrorReport
{
private string EventType;
private string RobotCode;
private string StationCode;
private string Location;
private string Message;
private string Solution;
private string UpdateTime;
/// <summary>
/// 事件类型,Location_abnormal工作位异常
/// robot_abnormal机器人异常
/// </summary>
public string eventType { get => EventType; set => EventType = value; }
/// <summary>
/// 机器人编码
/// </summary>
public string robotCode { get => RobotCode; set => RobotCode = value; }
/// <summary>
/// 工作站编码
/// </summary>
public string stationCode { get => StationCode; set => StationCode = value; }
/// <summary>
/// 工作位编码
/// </summary>
public string location { get => Location; set => Location = value; }
/// <summary>
/// 信息,异常的描述
/// </summary>
public string message { get => Message; set => Message = value; }
/// <summary>
/// 解决方案
/// </summary>
public string solution { get => Solution; set => Solution = value; }
/// <summary>
/// 更新时间
/// </summary>
public string updateTime { get => UpdateTime; set => UpdateTime = value; }
}
}