using HH.WCS.Hexafluo.util; using HH.WCS.Hexafluo.wms; using SqlSugar; using System.Collections.Generic; 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 } public class AgvWcsCarryMsg { /// /// Agv车体信息 /// public List AgvMsgList { get; set; } /// /// Wcs设备信息 /// public List WcsMsgList { get; set; } } /// /// 给站台的Agv信息 /// public class AgvCarryMsg { /// /// 车号 /// public string forkliftNo { get; set; } /// /// agv状态 /// public string Agvstate_s { get; set; } /// /// 电池电量 /// public string Battery_Soc { get; set; } /// /// 托盘码 /// public string TrayCode { get; set; } /// /// 车辆XY坐标(cm) /// public string Pos_XY { get; set; } } public class WcsCarryMsg { /// /// 设备编号 /// public string dvcNo { get; set; } /// /// X坐标 /// public string posX { get; set; } /// /// Y坐标 /// public string posY { get; set; } /// /// Y坐标 /// public string posZ { get; set; } /// /// 运行状态 /// public string dvcState { get; set; } /// /// 载货托盘 /// public string dvcCont { get; set; } } }