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