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.
|
- 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 ==> 上位机
- /// <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 SingleDosingFinishToPLC { get; set; } = "";
- /// <summary>
- /// 当前配料料仓的位置
- /// </summary>
- public static string SingleStockBinLocationToPLC { get; set; } = "";
-
- public static string RecipeDosingFinish { get; set; } = "";
- #endregion
- }
- }
|