using SqlSugar; namespace HH.WCS.ZCQTJ.Entitys.MES中间表 { [SugarTable("AGV_STATUS_BAST")] public class AGV_STATUS_BAST { public int Id { get; set; } /// /// 设备运行状态 /// // public bool AutoMode { get; set; } /// /// 设备故障 /// // public bool FatalFault { get; set; } // public bool TotalReset { get; set; } /// /// 是否启用 /// // public bool AgvBypass { get; set; } /// /// 入库口是否空满 /// public bool EntryPos1Empty { get; set; } /// /// 入库点是否有货 /// public bool EntryTrackBusy { get; set; } // public bool NumberPalletsEntry { get; set; } /// /// 设备是否请求放货 /// // public bool EntrySupplyPallet { get; set; } public bool ExitPos8Full { get; set; } /// /// 入库口空满 /// public bool ExitTrackBusy { get; set; } // public bool NumberPalletsExit { get; set; } // public bool RemovePalletExit { get; set; } //public bool ExitStackCounter { get; set; } // public DateTime? TimeStamp { get; set; } // public string RfidPalletNumber { get; set; } // public bool CarrAtPos5 { get; set; } } }