using Newtonsoft.Json; using Rhea.Common; using System; using Tiger.Model; using Tiger.Model.Entitys.MES.Position; namespace Tiger.IBusiness { /// /// 工步行为基类 /// public interface IWorkStep : IStep { #region Propertys & Variables public string NodeID { get; } public NodeTypes NodeType { get; set; } public MES_WO_NODE Node { get; set; } public MES_WO_OPER OperSetting { get; set; } public MES_WO_NODE_ACT NodeAct { get; set; } public MES_WO_ACTION ActSetting { get; set; } public IPosition CurPosition { get; set; } public IWorkAction CurAction { get; set; } public List PrepNodeIDs { get; set; } public Action DBSubmitAction { get; set; } #endregion Propertys & Variables public enum NodeTypes { Node, Action } #region Functions /// /// 获取行为开始的提示信息 /// /// public Locale GetBeginMsg(); #endregion Functions } }