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

141 lines
4.9 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.JXJFoodSmallStation.Model.HK_PLC
  7. {
  8. public class HKPlcCommAddress
  9. {
  10. #region 海科PLC ==> 上位机
  11. /// <summary>
  12. /// 是否允许配料
  13. /// </summary>
  14. public static string IsAllowDosing { get; set; } = "";
  15. /// <summary>
  16. /// 当前料仓位置
  17. /// </summary>
  18. public static string StockBinLocation { get; set; } = "";
  19. /// <summary>
  20. /// 当前料仓的状态(0:无意义,1:到达接料位置)
  21. /// </summary>
  22. public static string StockState { get; set; } = "";
  23. #endregion
  24. #region 上位机 ==> 海科PLC
  25. /// <summary>
  26. /// 料仓位置(配置该配方,所需要多个原料桶,每个原料桶有多个料仓位置)
  27. /// </summary>
  28. public static string StockBinLocationToPLC { get; set; } = "";
  29. /// <summary>
  30. /// 对应桶号
  31. /// </summary>
  32. public static string BarrelNumToPLC { get; set; } = "";
  33. /// <summary>
  34. /// 当前配料机配料完成
  35. /// </summary>
  36. public static string SingleDosingFinishToPLC { get; set; } = "";
  37. /// <summary>
  38. /// 当前配料料仓的位置
  39. /// </summary>
  40. public static string SingleStockBinLocationToPLC { get; set; } = "";
  41. public static string RecipeDosingFinish { get; set; } = "";
  42. #endregion
  43. #region AGV进出站1
  44. /// <summary>
  45. /// Agv送货 进站申请
  46. /// </summary>
  47. public static string DeliveryAGVApply { get; set; } = "DB3.DBX0.1";
  48. /// <summary>
  49. /// Agv送货 进站申请
  50. /// </summary>
  51. public static string DeliveryAGVIsApply { get; set; } = "";
  52. /// <summary>
  53. /// Agv送货 进站顶升申请
  54. /// </summary>
  55. public static string DeliveryAGVApplyJack { get; set; } = "";
  56. /// <summary>
  57. /// Agv送货 进站顶升申请
  58. /// </summary>
  59. public static string DeliveryAGVIsApplyJack { get; set; } = "";
  60. /// <summary>
  61. /// Agv送货 送货完成
  62. /// </summary>
  63. public static string DeliveryAGVFinsih { get; set; } = "";
  64. /// <summary>
  65. /// Agv送货 工位上有货架
  66. /// </summary>
  67. public static string StationHaveCargo { get; set; } = "";
  68. /// <summary>
  69. /// Agv送货 进站申请
  70. /// </summary>
  71. public static string PickAGVApply { get; set; } = "";
  72. /// <summary>
  73. /// Agv送货 进站申请
  74. /// </summary>
  75. public static string PickAGVIsApply { get; set; } = "";
  76. /// <summary>
  77. /// Agv送货 取货架完成
  78. /// </summary>
  79. public static string PickCargoAGVFinish { get; set; } = "";
  80. /// <summary>
  81. /// Agv送货 取料完成
  82. /// </summary>
  83. public static string PickAGVFinish { get; set; } = "";
  84. /// <summary>
  85. /// 工位上是否有小车
  86. /// </summary>
  87. public static string StationIsExistTray { get; set; } = "";
  88. #endregion
  89. #region AGV进出站2
  90. /// <summary>
  91. /// Agv送货 进站申请
  92. /// </summary>
  93. public static string DeliveryAGVApplyStation2 { get; set; } = "";
  94. /// <summary>
  95. /// Agv送货 进站申请
  96. /// </summary>
  97. public static string DeliveryAGVIsApplyStation2 { get; set; } = "";
  98. /// <summary>
  99. /// Agv送货 进站顶升申请
  100. /// </summary>
  101. public static string DeliveryAGVApplyJackStation2 { get; set; } = "";
  102. /// <summary>
  103. /// Agv送货 进站顶升申请
  104. /// </summary>
  105. public static string DeliveryAGVIsApplyJackStation2 { get; set; } = "";
  106. /// <summary>
  107. /// Agv送货 送货完成
  108. /// </summary>
  109. public static string DeliveryAGVFinsihStation2 { get; set; } = "";
  110. /// <summary>
  111. /// Agv送货 工位上有货架
  112. /// </summary>
  113. public static string StationHaveCargoStation2 { get; set; } = "";
  114. /// <summary>
  115. /// Agv送货 进站申请
  116. /// </summary>
  117. public static string PickAGVApplyStation2 { get; set; } = "";
  118. /// <summary>
  119. /// Agv送货 进站申请
  120. /// </summary>
  121. public static string PickAGVIsApplyStation2 { get; set; } = "";
  122. /// <summary>
  123. /// Agv送货 取货架完成
  124. /// </summary>
  125. public static string PickCargoAGVFinishStation2 { get; set; } = "";
  126. /// <summary>
  127. /// Agv送货 取料完成
  128. /// </summary>
  129. public static string PickAGVFinishStation2 { get; set; } = "";
  130. /// <summary>
  131. /// 工位上是否有货架
  132. /// </summary>
  133. public static string StationIsExistTrayStation2 { get; set; } = "";
  134. #endregion
  135. }
  136. }