| | |
| | | |
| | | #region Propertys & Variables |
| | | public string ID { get; set; } = Guid.NewGuid().ToString("N"); |
| | | public string NodeID { get; set; } |
| | | |
| | | public IWorkStep.Types Type { get; set; } |
| | | public MES_WO_NODE Node { get; set; } |
| | | public MES_WO_NODE_ACT NodeAct { get; set; } |
| | |
| | | public IWorkAction CurAction { get; set; } |
| | | public int Sequence { get; set; } |
| | | public List<string> PrepNodeIDs { get; set; } = new(); |
| | | public string NodeID => Type == IWorkStep.Types.Action ? NodeAct.ID : Node.ID; |
| | | private bool _IsFinished = false; |
| | | public bool IsFinished |
| | | { |