using SqlSugar;
namespace HH.WCS.ZCQTJ.Entitys.MES中间表
{
[SugarTable("BDST_TO_AGV_STATUS")]
public class BDST_TO_AGV_STATUS
{
public long VMI_TO_AGV_DATA { get; set; }
///
/// 设备运行状态
///
public bool AutoMode { get; set; }
///
/// 设备故障
///
public bool FatalFault { get; set; }
///
/// 是否启用
///
public bool AgvBypass { get; set; }
///
/// 入库点是否有货
///
public bool EntryTrackBusy { get; set; }
///
/// 入库口是否空满
///
public bool EntryPos1Empty { get; set; }
///
/// 设备是否请求放货
///
public bool EntrySupplyPallet { get; set; }
///
/// 取货点是否有货
///
public bool ExitPos4Full { get; set; }
///
/// 入库口空满
///
public bool ExitTrackBusy { get; set; }
///
/// 设备快堵住了
///
public bool ExitRemovePallet { get; set; }
public string Handshake { get; set; }
}
}