You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- 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
- {
- /// <summary>
- /// plc心跳上报
- /// </summary>
- public bool HeartBeat { get; set; }
- /// <summary>
- /// 配方1允许下发配方
- /// </summary>
- public bool IsAllowIssueRecipe1 { get; set; }
- public bool IsAllowIssueRecipe2 { get; set; }
- public bool IsAllowIssueRecipe3 { get; set; }
- public bool IsAllowIssueRecipe4 { get; set; }
-
- /// <summary>
- /// 配方1 接收配方完成
- /// </summary>
- public bool ReceiveFinishRecipe1 { get; set; }
- public bool ReceiveFinishRecipe2 { get; set; }
- public bool ReceiveFinishRecipe3 { get; set; }
- public bool ReceiveFinishRecipe4 { get; set; }
-
- /// <summary>
- /// 配方1 配料完成
- /// </summary>
- public bool Recipe1DosingFinish { get; set; }
- public bool Recipe2DosingFinish { get; set; }
- public bool Recipe3DosingFinish { get; set; }
- public bool Recipe4DosingFinish { get; set; }
-
- /// <summary>
- /// 配方1 托盘编号
- /// </summary>
- 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; }
- }
- }
|