namespace Yw.EPAnet { /// /// 检查类型 /// public class CheckType { /// /// 缺少水库或水池(水箱) /// 至少包含一座水库或水池(水箱) /// public const string SourceLack = "SourceLack"; /// /// 缺少连接节点 /// 至少包含一个连接节点 /// public const string JunctionLack = "JunctionLack"; /// /// 孤立节点 /// public const string NodeAlone = "NodeAlone"; /// /// 节点异常连接 /// public const string NodeAbnormalConnected = "NodeAbnormalConnected"; /// /// 孤立管段 /// public const string LinkAlone = "LinkAlone"; /// /// 管段缺少节点 /// public const string LinkLackNode = "LinkLackNode"; /// /// 管段异常连接 /// public const string LinkAbnormalConnected = "LinkAbnormalConnected"; /// /// 属性设置错误 /// public const string PropSetError = "PropSetError"; /// /// 连通异常 /// public const string Disconnected = "Disconnected"; } }