|
@@ -19,37 +19,43 @@ namespace JBIM.Definition
|
|
|
/// </summary>
|
|
|
public enum TypeDefinition
|
|
|
{
|
|
|
- [Description("Connector")]
|
|
|
+ [Description("BimObject")]
|
|
|
BimObject = -10000,
|
|
|
[Description("Connector")]
|
|
|
- Connector= BimObject-1,
|
|
|
+ Connector,
|
|
|
[Description("Duct")]
|
|
|
- Duct = BimObject - 2,
|
|
|
+ Duct ,
|
|
|
[Description("Pipe")]
|
|
|
- Pipe = BimObject - 3,
|
|
|
+ Pipe ,
|
|
|
[Description("Space")]
|
|
|
- Space = BimObject - 4,
|
|
|
+ Space,
|
|
|
[Description("MepSystem")]
|
|
|
- MepSystem = BimObject - 5,
|
|
|
+ MepSystem,
|
|
|
[Description("MepSystemType")]
|
|
|
- MepSystemType = BimObject - 6,
|
|
|
+ MepSystemType ,
|
|
|
[Description("BoundarySegment")]
|
|
|
- BoundarySegment = BimObject - 7,
|
|
|
+ BoundarySegment,
|
|
|
+ [Description("Equipment")]
|
|
|
+ Equipment,
|
|
|
+ [Description("EquipPart")]
|
|
|
+ EquipPart,
|
|
|
+ [Description("Column")]
|
|
|
+ Column,
|
|
|
#region 关系类型相关
|
|
|
[Description("Relationship")]
|
|
|
Relationship = -25000,
|
|
|
[Description("MepSystem")]
|
|
|
- Property_MepSystem = Relationship-1,
|
|
|
+ Property_MepSystem ,
|
|
|
[Description("Owner")]
|
|
|
- Property_Owner = Relationship - 2,
|
|
|
+ Property_Owner,
|
|
|
[Description("TypeId")]
|
|
|
- Property_TypeId = Relationship - 3,
|
|
|
+ Property_TypeId ,
|
|
|
[Description("ConnectedIds")]
|
|
|
- Property_ConnectedIds = Relationship - 4,
|
|
|
+ Property_ConnectedIds,
|
|
|
[Description("Host")]
|
|
|
- Property_Host = Relationship - 5,
|
|
|
+ Property_Host ,
|
|
|
[Description("Reference")]
|
|
|
- Property_Reference = Relationship - 6,
|
|
|
+ Property_Reference,
|
|
|
#endregion
|
|
|
}
|
|
|
}
|