AHTC/RGD/RGD.HaiRouAPI/HaiRouModel/ErrorReport.cs
2025-05-19 09:22:33 +08:00

58 lines
1.8 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*************************************************************************************
*
* 文 件 名: 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; }
}
}