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

48 lines
1.5 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. }
  44. }