mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-03 00:00:57 +08:00
33 lines
756 B
C#
33 lines
756 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Text;
|
|
|
|
namespace AIStudio.Wpf.SFC
|
|
{
|
|
public enum SFCNodeKinds
|
|
{
|
|
[Description("开始")]
|
|
Start = 1,
|
|
[Description("节点")]
|
|
Node = 2,
|
|
[Description("转移条件")]
|
|
Condition = 3,
|
|
[Description("动作")]
|
|
Action = 4,
|
|
[Description("并行开始")]
|
|
COBegin = 5,
|
|
[Description("并行结束")]
|
|
COEnd = 6,
|
|
|
|
[Description("容器")]
|
|
Simulate_Tank = 100,
|
|
[Description("阀门")]
|
|
Simulate_Solenoid = 101,
|
|
[Description("开始")]
|
|
Simulate_Start= 102,
|
|
[Description("测定清单")]
|
|
Simulate_List =103,
|
|
}
|
|
}
|