using HH.WCS.Hexafluo.util;
using HH.WCS.Hexafluo.wms;
using SqlSugar;
namespace HH.WCS.ZCQTJ.Entitys
{
///
/// AGV状态信息表
///
[ST("AGV状态信息表")]
public class S_AGV_CONDITIONEntitys : BaseModel
{
///
/// 车号
///
[SugarColumn(IsPrimaryKey = true)]
public string forkliftNo { get; set; }
#region 电池信息
///
/// 电池电量
///
public string Battery_Soc { get; set; }
///
/// 电池电压
///
public string Battery_V { get; set; }
///
/// 电池电流
///
public string Battery_Amp { get; set; }
///
/// 电池温度
///
public string Battery_Temp { get; set; }
///
/// 电池属性
///
public string Battery_Prop { get; set; }
#endregion
#region 电机信息
///
/// 电机电流
///
public string Motor_Amp { get; set; }
///
/// 电机温度
///
public string Motor_Temp { get; set; }
///
/// 油泵电机起升时电流
///
public string Motor_Y_Amp { get; set; }
///
/// 油泵电机实时温度
///
public string Motor_Y_Temp { get; set; }
#endregion
#region 交通管制信息
///
/// 布局位置点
///
public string Traffic_Pt { get; set; }
///
/// 布局位置段
///
public string Traffic_Sec { get; set; }
///
/// 堵塞逻辑线
///
public string Traffic_Wire { get; set; }
///
/// 堵塞单位编号
///
public string Traffic_Unit { get; set; }
///
/// 堵塞IO,ID
///
public string Traffic_Io { get; set; }
#endregion
#region 开机时间
///
/// 累计开机时间,单位(天)
///
public string Time_D { get; set; }
///
/// 累计开机时间,单位(h)
///
public string time_H { get; set; }
#endregion
#region 里程
///
/// 累计里程,单位(km)
///
public string Mileage_Km { get; set; }
///
/// 累计里程,单位(m)
///
public string Mileage_m { get; set; }
#endregion
#region 举升次数
///
/// 累计货叉举升次数,单位:1000次
///
public string Lifts_Kc { get; set; }
///
///累计货叉举升次数,单位:次
///
public string Lifts_c { get; set; }
#endregion
#region 其他信息
///
/// 车辆X坐标(cm)
///
public string Pos_X { get; set; }
///
/// 车辆Y坐标(cm)
///
public string Pos_Y { get; set; }
///
/// 车辆z坐标(起升高度)(mm)
///
public string Pos_Z { get; set; }
#endregion
#region 转向角度
///
/// 转向角度,单位:°
///
public string Angle_Deg { get; set; }
#endregion
#region agv状态
public string Agvstate_s { get; set; }
#endregion
}
}