/************************************************************************************* * * 文 件 名: 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; /// /// 事件类型,Location_abnormal:工作位异常 /// robot_abnormal:机器人异常 /// public string eventType { get => EventType; set => EventType = value; } /// /// 机器人编码 /// public string robotCode { get => RobotCode; set => RobotCode = value; } /// /// 工作站编码 /// public string stationCode { get => StationCode; set => StationCode = value; } /// /// 工作位编码 /// public string location { get => Location; set => Location = value; } /// /// 信息,异常的描述 /// public string message { get => Message; set => Message = value; } /// /// 解决方案 /// public string solution { get => Solution; set => Solution = value; } /// /// 更新时间 /// public string updateTime { get => UpdateTime; set => UpdateTime = value; } } }