终端一体化运控平台
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.
 
 
 

63 lines
2.3 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace BPASmartClient.JXJFoodBigStation.Model.HK_PLC
  7. {
  8. public class DB_Read
  9. {
  10. /// <summary>
  11. /// plc心跳上报
  12. /// </summary>
  13. public bool HeartBeat { get; set; }
  14. /// <summary>
  15. /// 配方1允许下发配方
  16. /// </summary>
  17. public bool IsAllowIssueRecipe1 { get; set; }
  18. public bool IsAllowIssueRecipe2 { get; set; }
  19. public bool IsAllowIssueRecipe3 { get; set; }
  20. public bool IsAllowIssueRecipe4 { get; set; }
  21. /// <summary>
  22. /// 配方1 接收配方完成
  23. /// </summary>
  24. public bool ReceiveFinishRecipe1 { get; set; }
  25. public bool ReceiveFinishRecipe2 { get; set; }
  26. public bool ReceiveFinishRecipe3 { get; set; }
  27. public bool ReceiveFinishRecipe4 { get; set; }
  28. /// <summary>
  29. /// 配方1 配料完成
  30. /// </summary>
  31. public bool Recipe1DosingFinish { get; set; }
  32. public bool Recipe2DosingFinish { get; set; }
  33. public bool Recipe3DosingFinish { get; set; }
  34. public bool Recipe4DosingFinish { get; set; }
  35. /// <summary>
  36. /// 配方1 托盘编号
  37. /// </summary>
  38. public short Recipe1TrayCode { get; set; }
  39. public short Recipe2TrayCode { get; set; }
  40. public short Recipe3TrayCode { get; set; }
  41. public short Recipe4TrayCode { get; set; }
  42. public float StockBin1ActualWeight { get; set; }
  43. public float StockBin2ActualWeight { get; set; }
  44. public float StockBin3ActualWeight { get; set; }
  45. public float StockBin4ActualWeight { get; set; }
  46. public float StockBin5ActualWeight { get; set; }
  47. public float StockBin6ActualWeight { get; set; }
  48. public float StockBin7ActualWeight { get; set; }
  49. public float StockBin8ActualWeight { get; set; }
  50. public float StockBin9ActualWeight { get; set; }
  51. public float StockBin10ActualWeight { get; set; }
  52. public float StockBin11ActualWeight { get; set; }
  53. public float StockBin12ActualWeight { get; set; }
  54. public float StockBin13ActualWeight { get; set; }
  55. public float StockBin14ActualWeight { get; set; }
  56. }
  57. }