using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataCapture_MA.Entity
{
public class RobotInfo
{
public int Id { get; set; }
///
/// 报警数量
///
public int WarnningNum { get; set; }
///
/// 报警内容
///
public string WarnningContent { get; set; }
///
/// 停止信息
///
public bool StopInfo { get; set; }
///
/// 机器人状态
///
//public string RobotStatus { get; set; }
///
/// 程序名
///
public string ProgramName { get; set; }
///
/// 机器人型号
///
public string RobotModel { get; set; }
///
/// 机器人序列号
///
public string RobotSerialNo { get; set; }
///
/// 系统版本
///
public string SysteamVersion { get; set; }
///
/// 运行时间
///
public string RunTime { get; set; }
///
/// 电池状态
///
public string BatteryStatus { get; set; }
///
/// 安全控制系统状态
///
public string SecuritySysteamStatus { get; set; }
///
/// 急停
///
public bool EmergencyStop { get; set; }
///
/// CPU利用率
///
public string CpuAvailabeRate { get; set; }
///
/// 内存剩余空间
///
public int MemerySpace { get; set; }
///
/// 机器人模式
///
public string RobotMode { get; set; }
///
/// 机器人停止
///
public bool RobotStop { get; set; }
///
/// 手动激活
///
public bool HandActivate { get; set; }
///
/// 程序速度
///
public string ProgrameSpeed { get; set; }
///
/// 程序状态
///
public string ProgrameStatus { get; set; }
///
/// 马达温度
///
public string MotorTemperature { get; set; }
///
/// 当前电流
///
public string CurrentElectricity { get; set; }
///
/// 各轴扭力
///
public string TorqueForce { get; set; }
///
/// 各轴速度
///
public string TorqueSpeed { get; set; }
///
/// 当前基座坐标编号
///
public string BaseCoordinateNo { get; set; }
///
/// 机器人当前工具坐标编号
///
public string UseToolNo { get; set; }
///
/// TCP当前坐标位置
///
public string TcpCoordinate { get; set; }
///
/// 当前轴角度
///
public string AxisAngle { get; set; }
///
/// 马达位置
///
public string MotorLocation { get; set; }
///
/// 创建时间
///
public string CreateTime { get; set; }
///
/// 创建时的时间戳
///
public long CreateStamp { get; set; }
///
/// 更新时间
///
public string UpdateTime { get; set; }
///
/// 软删除标记
///
public bool IsDelete { get; set; }
}
}