58 lines
1.8 KiB
C#
58 lines
1.8 KiB
C#
|
/*************************************************************************************
|
|||
|
*
|
|||
|
* 文 件 名: 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; }
|
|||
|
}
|
|||
|
}
|