using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPASmartClient.JXJFoodBigStation.Model.HK_PLC { public class HKPlcCommAddress { #region 海科PLC ==> 上位机 public static string HeartHealth { get; set; } = "M5000.0"; /// <summary> /// 是否允许配料 /// </summary> public static string IsAllowDosing { get; set; } = ""; /// <summary> /// /// </summary> public static string StockBinLocation { get; set; } = ""; /// <summary> /// 当前料仓的状态(0:无意义,1:到达接料位置) /// </summary> public static string StockState { get; set; } = ""; #endregion #region 上位机 ==> 海科PLC /// <summary> /// 料仓位置(配置该配方,所需要多个原料桶,每个原料桶有多个料仓位置) /// </summary> public static string StockBinLocationToPLC { get; set; } = ""; /// <summary> /// 对应桶号 /// </summary> public static string BarrelNumToPLC { get; set; } = ""; /// <summary> /// 对应桶号 /// </summary> public static string WeightToPLC { get; set; } = ""; /// <summary> /// 当前配料机配料完成 /// </summary> public static string SingleDosingFinishToPLC { get; set; } = ""; /// <summary> /// 当前配料料仓的位置 /// </summary> public static string SingleStockBinLocationToPLC { get; set; } = ""; /// <summary> /// 配方配料完成 /// </summary> public static string RecipeDosingFinish { get; set; } = ""; #endregion #region AGV进出站 /// <summary> /// Agv送货 进站申请 /// </summary> public static string DeliveryAGVApply { get; set; } = "M4002"; /// <summary> /// Agv送货 进站申请 /// </summary> public static string DeliveryAGVIsApply { get; set; } = "M5002"; /// <summary> /// Agv送货 进站顶升申请 /// </summary> public static string DeliveryAGVApplyJack { get; set; } = "M4004"; /// <summary> /// Agv送货 进站顶升申请 /// </summary> public static string DeliveryAGVIsApplyJack { get; set; } = "M5004"; /// <summary> /// Agv送货 送货完成 /// </summary> public static string DeliveryAGVFinsih { get; set; } = "M4005"; /// <summary> /// Agv送货 工位上有货架 /// </summary> public static string StationHaveCargo { get; set; } = "M5005"; /// <summary> /// Agv送货 进站申请 /// </summary> public static string PickAGVApply { get; set; } = "M4003"; /// <summary> /// Agv送货 进站申请 /// </summary> public static string PickAGVIsApply { get; set; } = "M5003"; /// <summary> /// Agv送货 取货架完成 /// </summary> public static string PickCargoAGVFinish { get; set; } = "M4006"; /// <summary> /// Agv送货 取料完成 /// </summary> public static string PickAGVFinish { get; set; } = "M5006"; /// <summary> /// 工位上是否有小车 /// </summary> public static string StationIsExistTray { get; set; } = "M4007"; #endregion public static string StationIsExistCar { get; set; } } }