using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPASmartClient.JXJFoodBigStation.Model.HK_PLC { public class DB_Read { /// /// plc心跳上报 /// public bool HeartBeat { get; set; } /// /// 配方1允许下发配方 /// public bool IsAllowIssueRecipe1 { get; set; } public bool IsAllowIssueRecipe2 { get; set; } public bool IsAllowIssueRecipe3 { get; set; } public bool IsAllowIssueRecipe4 { get; set; } /// /// 配方1 接收配方完成 /// public bool ReceiveFinishRecipe1 { get; set; } public bool ReceiveFinishRecipe2 { get; set; } public bool ReceiveFinishRecipe3 { get; set; } public bool ReceiveFinishRecipe4 { get; set; } /// /// 配方1 配料完成 /// public bool Recipe1DosingFinish { get; set; } public bool Recipe2DosingFinish { get; set; } public bool Recipe3DosingFinish { get; set; } public bool Recipe4DosingFinish { get; set; } /// /// 配方1 托盘编号 /// public short Recipe1TrayCode { get; set; } public short Recipe2TrayCode { get; set; } public short Recipe3TrayCode { get; set; } public short Recipe4TrayCode { get; set; } public float StockBin1ActualWeight { get; set; } public float StockBin2ActualWeight { get; set; } public float StockBin3ActualWeight { get; set; } public float StockBin4ActualWeight { get; set; } public float StockBin5ActualWeight { get; set; } public float StockBin6ActualWeight { get; set; } public float StockBin7ActualWeight { get; set; } public float StockBin8ActualWeight { get; set; } public float StockBin9ActualWeight { get; set; } public float StockBin10ActualWeight { get; set; } public float StockBin11ActualWeight { get; set; } public float StockBin12ActualWeight { get; set; } public float StockBin13ActualWeight { get; set; } public float StockBin14ActualWeight { get; set; } } }