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

95 lines
3.2 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进出站
  44. /// <summary>
  45. /// Agv送货 进站申请
  46. /// </summary>
  47. public static string DeliveryAGVApply { get; set; } = "";
  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 StationIsExistCar { get; set; } = "";
  88. #endregion
  89. }
  90. }