Quellcode durchsuchen

Merge remote-tracking branch 'origin/master'

# Conflicts:
#	datacenter/src/main/kotlin/com/persagy/server/datacenter/services/relation_calc/CalcSpecialService.kt
zhangweixin vor 4 Jahren
Ursprung
Commit
11e5552462

+ 34 - 1
data-core/src/main/kotlin/com/persagy/server/datacenter/datacenter/models/entities/graphtype/block/ConnectedBlock.kt

@@ -94,7 +94,7 @@ open class ConnectedBlock : RBaseInfo() {
     /** depth */
     @Schema(description = "depth")
     @Column(name = "depth")
-    var depth: String? = null
+    var depth: Int? = null
 
     /** mep_system_type */
     @Schema(description = "mep_system_type")
@@ -111,4 +111,37 @@ open class ConnectedBlock : RBaseInfo() {
     @Column(name = "building_id")
     var buildingId: String? = null
 
+    /** typecode1 */
+    @Schema(description = "type_code1")
+    @Column(name = "type_code1")
+    var typeCode1: String? = null
+
+    /** typecode2 */
+    @Schema(description = "type_code2")
+    @Column(name = "type_code2")
+    var typeCode2: String? = null
+
+    override fun equals(other: Any?): Boolean {
+        if (this === other) return true
+        if (javaClass != other?.javaClass) return false
+
+        other as ConnectedBlock
+
+        if (id1 == other.id1 && id2 == other.id2) return true
+        if (id1 == other.id2 && id2 == other.id1) return true
+        if (projectId != other.projectId) return false
+        if (buildingId != other.buildingId) return false
+
+        return false
+    }
+
+    override fun hashCode(): Int {
+        var result = id1?.hashCode() ?: 0
+        result = 31 * result + (id2?.hashCode() ?: 0)
+        result = 31 * result + (projectId?.hashCode() ?: 0)
+        result = 31 * result + (buildingId?.hashCode() ?: 0)
+        return result
+    }
+
+
 }

+ 147 - 0
data-core/src/main/kotlin/com/persagy/server/datacenter/datacenter/models/entities/graphtype/block/ConnectedBlockFull.kt

@@ -0,0 +1,147 @@
+/*
+ * *********************************************************************************************************************
+ *
+ *          !!
+ *        .F88X
+ *        X8888Y
+ *      .}888888N;
+ *        i888888N;        .:!              .I$WI:
+ *          R888888I      .'N88~            i8}+8Y&8"l8i$8>8W~'>W8}8]KW+8IIN"8&
+ *          .R888888I    .;N8888~          .X8'  "8I.!,/8"  !%NY8`"8I8~~8>,88I
+ *            +888888N;  .8888888Y                                  "&&8Y.}8,
+ *            ./888888N;  .R888888Y        .'}~    .>}'.`+>  i}!    "i'  +/'  .'i~  !11,.:">,  .~]!  .i}i
+ *              ~888888%:  .I888888l      .]88~`1/iY88Ii+1'.R$8$8]"888888888>  Y8$  W8E  X8E  W8888'188Il}Y88$*
+ *              18888888    E8888881    .]W%8$`R8X'&8%++N8i,8N%N8+l8%`  .}8N:.R$RE%N88N%N$K$R  188,FE$8%~Y88I
+ *            .E888888I  .i8888888'      .:$8I;88+`E8R:/8N,.>881.`$8E/1/]N8X.Y8N`"KF&&FK!'88*."88K./$88%RN888+~
+ *            8888888I  .,N888888~        ~88i"8W,!N8*.I88.}888%F,i$88"F88"  888:E8X.>88!i88>`888*.}Fl1]*}1YKi'
+ *          i888888N'      I888Y          ]88;/EX*IFKFK88X  K8R  .l8W  88Y  ~88}'88E&%8W.X8N``]88!.$8K  .:W8I
+ *        .i888888N;        I8Y          .&8$  .X88!  i881.:%888>I88  ;88]  +88+.';;;;:.Y88X  18N.,88l  .+88/
+ *      .:R888888I
+ *      .&888888I                                          Copyright (c) 2009-2020.  博锐尚格科技股份有限公司
+ *        ~8888'
+ *        .!88~                                                                     All rights reserved.
+ *
+ * *********************************************************************************************************************
+ */
+
+package com.persagy.server.datacenter.models.entities.graphtype.block
+
+import com.persagy.server.datacenter.models.entities.base.RBaseInfo
+import io.swagger.v3.oas.annotations.media.Schema
+import javax.persistence.Column
+import javax.persistence.Id
+import javax.persistence.Table
+
+/**
+ * 源末端
+ *
+ * @author  邓婷婷
+ */
+@Schema(description = "源末端全连接实体类")
+@Table(name = "revit_calc.connected_block")
+open class ConnectedBlockFull : RBaseInfo() {
+    /** id */
+    @Schema(description = "id")
+    @Id
+    @Column(name = "id")
+    var id: Long? = null
+
+    /** id1 */
+    @Schema(description = "id1")
+    @Column(name = "id1")
+    var id1: String? = null
+
+    /** type1 */
+    @Schema(description = "type1")
+    @Column(name = "type1")
+    var type1: String? = null
+
+    /** model_id1 */
+    @Schema(description = "model_id1")
+    @Column(name = "model_id1")
+    var modelId1: String? = null
+
+    /** id2 */
+    @Schema(description = "id2")
+    @Column(name = "id2")
+    var id2: String? = null
+
+    /** type2 */
+    @Schema(description = "type2")
+    @Column(name = "type2")
+    var type2: String? = null
+
+    /** model_id2 */
+    @Schema(description = "model_id2")
+    @Column(name = "model_id2")
+    var modelId2: String? = null
+
+    /** direction */
+    @Schema(description = "direction, 1表示从id1流向id2, -1 表示从id2流向id1, 0表示不确定流向")
+    @Column(name = "direction")
+    var direction: Int? = null
+
+    /** block_id */
+    @Schema(description = "block_id")
+    @Column(name = "block_id")
+    var blockId: String? = null
+
+    /** project_id */
+    @Schema(description = "project_id")
+    @Column(name = "project_id")
+    var projectId: String? = null
+
+    /** depth */
+    @Schema(description = "depth")
+    @Column(name = "depth")
+    var depth: Int? = null
+
+    /** mep_system_type */
+    @Schema(description = "mep_system_type")
+    @Column(name = "mep_system_type")
+    var mepSystemType: String? = null
+
+    /** domain */
+    @Schema(description = "domain")
+    @Column(name = "domain")
+    var domain: String? = null
+
+    /** building_id */
+    @Schema(description = "building_id")
+    @Column(name = "building_id")
+    var buildingId: String? = null
+
+    /** typecode1 */
+    @Schema(description = "type_code1")
+    @Column(name = "type_code1")
+    var typeCode1: String? = null
+
+    /** typecode2 */
+    @Schema(description = "type_code2")
+    @Column(name = "type_code2")
+    var typeCode2: String? = null
+
+    override fun equals(other: Any?): Boolean {
+        if (this === other) return true
+        if (javaClass != other?.javaClass) return false
+
+        other as ConnectedBlockFull
+
+        if (id1 == other.id1 && id2 == other.id2) return true
+        if (id1 == other.id2 && id2 == other.id1) return true
+        if (projectId != other.projectId) return false
+        if (buildingId != other.buildingId) return false
+
+        return false
+    }
+
+    override fun hashCode(): Int {
+        var result = id1?.hashCode() ?: 0
+        result = 31 * result + (id2?.hashCode() ?: 0)
+        result = 31 * result + (projectId?.hashCode() ?: 0)
+        result = 31 * result + (buildingId?.hashCode() ?: 0)
+        return result
+    }
+
+
+}

+ 17 - 2
datacenter/src/main/kotlin/com/persagy/server/datacenter/mappers/ICalcSpecialMapper.kt

@@ -26,9 +26,13 @@
 
 package com.persagy.server.mappers
 
+import com.persagy.server.datacenter.utils.JsonTypeHandler
 import com.persagy.server.models.entities.Connector
 import org.apache.ibatis.annotations.Mapper
+import org.apache.ibatis.annotations.Result
+import org.apache.ibatis.annotations.Results
 import org.apache.ibatis.annotations.Select
+import org.apache.ibatis.type.JdbcType
 import org.springframework.stereotype.Repository
 
 /**
@@ -66,7 +70,7 @@ interface ICalcSpecialMapper {
      * @Return: List<Connector>
      */
     @Select(" SELECT * from revit.connector where model_id = #{modelId} order by case belong_type  " +
-            "when 'Equipment' then 1" +
+            "when 'Equipment' then 1 " +
             "when 'EquipPart' then 2 " +
             "when 'JoinObject' then 3 " +
             "when 'Other' then 4 " +
@@ -75,7 +79,18 @@ interface ICalcSpecialMapper {
             "when 'Duct' then 7 " +
             "when 'FlexDuct' then 8 " +
             "end asc")
-    fun connectorOrder(modelId:String): List<Connector>
+    @Results(*[Result(property = "id", column = "id"),
+        Result(property = "modelId", column = "model_id"),
+        Result(property = "revitId", column = "revit_id"),
+        Result(property = "sourceId", column = "source_id"),
+        Result(property = "elementType", column = "type"),
+        Result(property = "belongType", column = "belong_type"),
+        Result(property = "isConnected", column = "connected"),
+        Result(property = "connectedIds", column = "connected_ids",typeHandler = JsonTypeHandler:: class),
+        Result(property = "mepSystemType", column = "mep_system_type"),
+        Result(property = "connectIdJson", column = "connect_id_json",typeHandler = JsonTypeHandler:: class),
+        Result(property = "belongBimId", column = "belong_bimid")])
+    fun connectorOrder(modelId:String): ArrayList<Connector>
 
 
 

+ 175 - 38
datacenter/src/main/kotlin/com/persagy/server/datacenter/services/relation_calc/CalcSpecialService.kt

@@ -24,17 +24,21 @@
  * *********************************************************************************************************************
  */
 
-package com.persagy.server.datacenter.services.relation_calc
+package com.persagy.server.services.relation_calc
 
+import com.persagy.base.extensions.toJson
 import com.persagy.database.SFilter
 import com.persagy.mybatis.SMybatisDao
 import com.persagy.server.datacenter.models.entities.graphtype.RelationTypeProject
 import com.persagy.server.datacenter.models.entities.graphtype.block.ConnectedBlock
-import com.persagy.server.datacenter.services.objects.EquipmentService
 import com.persagy.server.datacenter.wanda.rel.REq2Eq
 import com.persagy.server.mappers.ICalcSpecialMapper
+import com.persagy.server.models.`object`.ClassCodeEnum
+import com.persagy.server.models.`object`.NetWork
 import com.persagy.server.models.entities.Connector
+import com.persagy.server.models.service.BaseDataService
 import com.persagy.server.services.assistant.RUpDateEquipAndSapceService
+import com.persagy.server.services.objects.EquipmentService
 import com.persagy.server.services.objects.FloorService
 import com.persagy.server.utils.IdUtils
 import com.persagy.service.SBaseService
@@ -46,6 +50,7 @@ import com.persagy.service.models.responses.SBaseResponse
 import org.json.JSONObject
 import org.springframework.beans.factory.annotation.Autowired
 import org.springframework.stereotype.Service
+import org.springframework.web.bind.annotation.RequestParam
 
 /**
  * 关系计算-管网
@@ -253,63 +258,195 @@ open class CalcSpecialService {
      * @Return:
      */
     fun calcNetworks(projectId: String,buildingId: String): SBaseResponse{
-        val floors = FloorService.select(SFilter.eq("projectId",projectId), SFilter.eq("buildingId",buildingId)).exec()
-        val rEq2Eqs = ArrayList<REq2Eq>()
+        val floors = FloorService.select(SFilter.eq("projectId",projectId), SFilter.eq("buildingId",buildingId),SFilter.eq("id","Fl440307000355ee6382da6d42cf87f19551cc4b4e60")).exec()
+        val connectedBlocks = ArrayList<ConnectedBlock>()
+//        val connectorList = listOf("Equipment","JoinObject")
         for (floor in floors) {
-            if(!floor.modelId.isNullOrEmpty()){
+            if (!floor.modelId.isNullOrEmpty()) {
                 val connectors = mapper.connectorOrder(floor.modelId!!)
-                val dcEquipments = EquipmentService.select(SFilter.eq("projectId",projectId), SFilter.eq("floorId",floor.id!!)).exec()
-                val dcEquipMap = HashMap<String,String>(1024)
-                for (equipment in dcEquipments) {
-                    dcEquipMap[equipment.bimId!!] = equipment.id!!
-                }
+//                val dcEquipments = EquipmentService.select(SFilter.eq("projectId",projectId), SFilter.eq("floorId",floor.id!!)).exec()
+//                val dcEquipMap = HashMap<String,Equipment>(1024)
+//                for (equipment in dcEquipments) {
+//                    if(!equipment.bimId.isNullOrEmpty()){
+//                        dcEquipMap[equipment.bimId!!] = equipment
+//                    }
+//
+//                }
 
 
-                var currentConnector: Connector? = null
-                val map = HashMap<String,Connector>(100000)
+                val equipmentsConnector = ArrayList<Connector>()
+//                val map = HashMap<String, ArrayList<Connector>>(10000)
+                val connectorMap = HashMap<String, Connector>(100000)
+                val typeMap = HashMap<String, String>(10000)
                 for (connector in connectors) {
-                    map[connector.revitId!!] = connector
+                    connectorMap[connector.revitId!!] = connector
+                    if (connector.belongType == "Equipment") {
+                        equipmentsConnector.add(connector)
+                    }
+
+                    val belong = connector.belong ?: continue
+                    //                    if (map.containsKey(belong)) {
+//                        val connectorss = map[belong]!!
+//                        connectorss.add(connector)
+//                        map[belong] = connectorss
+//
+//                    } else {
+//                        map[belong] = arrayListOf(connector)
+//                    }
+                    val belongType = connector.belongType
+                    if (belongType != null) {
+                        typeMap[belong] = belongType
+                    }
+
                 }
+                val belongMap = HashMap<String, HashSet<String>>()
+
+                //遍历连接件
                 for (connector in connectors) {
-                    if(connector.isUsed == true){
-                        continue
+                    //拿到所属类
+                    val belongType = connector.belongType
+                    //拿到所属id
+                    val belong = connector.belong
+
+
+//                    //如果连接件有连接
+                    if (connector.connectedIds!!.size > 0 && belong != null) {
+                        val revitId = connector!!.connectedIds?.get(0)
+                        var currentConnector = connectorMap[revitId!!]
+                        val cBelong = currentConnector?.belong
+                        if (cBelong != null) {
+
+                            if (belongMap.containsKey(belong)) {
+                                val belongs = belongMap[belong]!!
+                                belongs.add(cBelong)
+                                belongMap[belong] = belongs
+                            } else {
+                                belongMap[belong] = hashSetOf(cBelong)
+                            }
+                        }
                     }
-                    currentConnector = connector
-                    val id1 = dcEquipMap[connector.belongBimId]
-                    if(id1 == null){
+                }
+                for (key in belongMap.keys) {
+                    if(typeMap[key] != "Equipment"){
                         continue
                     }
-                    while(currentConnector!!.connectedIds!!.size == 1){
-                        val revitId = currentConnector!!.connectedIds?.get(0)
-                        currentConnector = map[revitId]!!
-                        if(currentConnector!!.belongType == "Equipment" && connector!!.belongType == "Equipment" && currentConnector != connector){
-
-                            val id2 = dcEquipMap[currentConnector.belongBimId]
-                            if(id2 != null){
-                                val rEq2Eq = REq2Eq()
-                                rEq2Eq.id1 = id1
-                                rEq2Eq.id2 = id2
-                                rEq2Eq.sign = 1
-                                rEq2Eq.projectId = projectId
-                                rEq2Eq.hasDirection = false
-                                rEq2Eq.type = ""
-                                rEq2Eqs.add(rEq2Eq)
+                    val belongSet = belongMap[key]!!
+                    val newWork = dist(belongSet,belongSet, belongMap,typeMap,belongSet)
+                    for (s in newWork.fullConnectors!!) {
+                        if(typeMap[s] == "Equipment" && key != s){
+
+                            val connectedBlock = ConnectedBlock()
+                            connectedBlock.id1 = key
+                            connectedBlock.id2 = s
+                            connectedBlock.type1 = "Equipment"
+                            connectedBlock.type2 = "Equipment"
+                            connectedBlock.modelId1 = floor.modelId
+                            connectedBlock.modelId2 = floor.modelId
+//                                connectedBlock.domain = connector.domain
+//                                connectedBlock.mepSystemType = connector.mepSystemType
+                            connectedBlock.projectId = projectId
+                            connectedBlock.buildingId = buildingId
+                            connectedBlock.depth = 1
+//                                connectedBlock.typeCode1 = e1?.classCode
+//                                connectedBlock.typeCode2 = e2?.classCode
+                            if (!connectedBlocks.contains(connectedBlock)) {
+                                connectedBlocks.add(connectedBlock)
                             }
 
+                        }
+                    }
+                    for (s in newWork.directConnectors!!) {
+                        if(typeMap[s] == "Equipment" && key != s){
 
+                            val connectedBlock = ConnectedBlock()
+                            connectedBlock.id1 = key
+                            connectedBlock.id2 = s
+                            connectedBlock.type1 = "Equipment"
+                            connectedBlock.type2 = "Equipment"
+                            connectedBlock.modelId1 = floor.modelId
+                            connectedBlock.modelId2 = floor.modelId
+//                                connectedBlock.domain = connector.domain
+//                                connectedBlock.mepSystemType = connector.mepSystemType
+                            connectedBlock.projectId = projectId
+                            connectedBlock.buildingId = buildingId
+                            connectedBlock.depth = 0
+//                                connectedBlock.typeCode1 = e1?.classCode
+//                                connectedBlock.typeCode2 = e2?.classCode
+                            if (!connectedBlocks.contains(connectedBlock)) {
+                                connectedBlocks.add(connectedBlock)
+                            }
 
                         }
-                        currentConnector.isUsed = true
                     }
+
                 }
             }
 
+
         }
-        val request = SCreateRequest<REq2Eq>()
-        request.content = rEq2Eqs
-        rEq2EqService.createList(request)
-        return SBaseResponse(SResponseType.failure, "e.message!!")
+        connectedBlockService.delete(SFilter.eq("projectId",projectId), SFilter.eq("buildingId",buildingId))
+        val request = SCreateRequest<ConnectedBlock>()
+        request.content = connectedBlocks
+        connectedBlockService.createList(request)
+        return SBaseResponse(SResponseType.success, "")
 
     }
 
+    /**
+     * @Description:递归查找连接
+     * @Param:
+     * @Return:
+     */
+     fun searchConnector(connector: Connector,currentConnector: Connector,map: HashMap<String,ArrayList<Connector>>,connectorMap: HashMap<String,Connector>): Connector?{
+        val belong = currentConnector.belong ?: return null
+        if(currentConnector.belongType == "Equipment" && currentConnector != connector){
+            return currentConnector
+        }else{
+//            println(currentConnector.belong)
+            val connectors = map[belong] ?: return null
+            for (connector in connectors) {
+                if(currentConnector.revitId != connector.revitId && connector.isConnected == true){
+                    val revitId = connector.connectedIds!![0]!!
+                    val ccConnector = connectorMap[revitId]!!
+                    return searchConnector(connector,ccConnector,map,connectorMap)
+                }else{
+                    continue
+                }
+            }
+            return null
+        }
+     }
+
+    fun dist(list: HashSet<String>,directList:HashSet<String>, belongMap: HashMap<String,HashSet<String>>,typeMap: HashMap<String,String>,newList: HashSet<String>): NetWork{
+//        val list = belongMap[key]!!
+//                    val connectList = ArrayList<String>()
+//        while(list)
+        val beforeList = HashSet<String>(list)
+        for (belong in newList) {
+            if(belongMap[belong] == null){
+                continue
+            }
+            if(typeMap[belong] != "Equipment"){
+                directList.addAll(belongMap[belong]!!)
+            }
+            list.addAll(belongMap[belong]!!)
+        }
+        if(beforeList.containsAll(list)){
+            return NetWork(list,directList)
+        }else{
+            newList.remove(beforeList)
+            return dist(list,beforeList,belongMap,typeMap,newList)
+        }
+
+    }
+
+//    fun calcNetworks(projectId: String,buildingId: String): SBaseResponse{
+//        val connectedBlocks = connectedBlockService.select(SFilter.eq("projectId",projectId), SFilter.eq("buildingId",buildingId)).exec()
+//        val classCodeList = ArrayList<String>()
+//        for (classCodeEnum in ClassCodeEnum.values()) {
+//            classCodeList.add(classCodeEnum.name)
+//        }
+//        val cb = connectedBlocks.filter { s -> classCodeList.contains(s.typeCode1)  || classCodeList.contains(s.typeCode2) }
+//    }
+
 } // Class CalcSpecialService

+ 49 - 0
datacenter/src/main/kotlin/com/persagy/server/datacenter/utils/JsonTypeHandler.kt

@@ -0,0 +1,49 @@
+package com.persagy.server.datacenter.utils
+
+import com.alibaba.fastjson.JSON
+import com.alibaba.fastjson.serializer.SerializerFeature
+import org.apache.ibatis.type.BaseTypeHandler
+import org.apache.ibatis.type.JdbcType
+import org.slf4j.LoggerFactory
+import java.sql.CallableStatement
+import java.sql.PreparedStatement
+import java.sql.ResultSet
+import java.sql.SQLException
+
+/**
+ * @author 蔡云飞
+ * @date 2020/6/21 11:06
+ */ // 继承自BaseTypeHandler<Object> 使用Object是为了让JsonUtil可以处理任意类型
+class JsonTypeHandler<T>(type: Class<T>?) : BaseTypeHandler<T>() {
+    private val type: Class<T>
+
+    @Throws(SQLException::class)
+    override fun setNonNullParameter(preparedStatement: PreparedStatement, i: Int, o: T, jdbcType: JdbcType) {
+        preparedStatement.setString(i, JSON.toJSONString(o, SerializerFeature.WriteMapNullValue, SerializerFeature.WriteNullListAsEmpty, SerializerFeature.WriteNullStringAsEmpty))
+    }
+
+    @Throws(SQLException::class)
+    override fun getNullableResult(resultSet: ResultSet, s: String): T {
+        return JSON.parseObject(resultSet.getString(s), type)
+    }
+
+    @Throws(SQLException::class)
+    override fun getNullableResult(resultSet: ResultSet, i: Int): T {
+        return JSON.parseObject(resultSet.getString(i), type)
+    }
+
+    @Throws(SQLException::class)
+    override fun getNullableResult(callableStatement: CallableStatement, i: Int): T {
+        return JSON.parseObject(callableStatement.getString(i), type)
+    }
+
+    companion object {
+        private val LOG = LoggerFactory.getLogger(JsonTypeHandler::class.java)
+    }
+
+    init {
+        LOG.info("JsonTypeHandler($type)")
+        requireNotNull(type) { "Type argument cannot be null" }
+        this.type = type
+    }
+}

+ 2 - 0
datacenter/src/main/kotlin/com/persagy/server/models/entities/BaseComponent.kt

@@ -34,4 +34,6 @@ open class BaseComponent : SBaseEntity(){
 
     /** 模型所属楼层的id, 是uuid */
     var modelFloorId: String? = null
+
+
 }

+ 28 - 29
datacenter/src/main/kotlin/com/persagy/server/models/entities/Connector.kt

@@ -1,9 +1,7 @@
 package com.persagy.server.models.entities
 
 import cn.sagacloud.server.algorithm.models.entities.BaseComponent
-import com.alibaba.fastjson.annotation.JSONField
 import com.fasterxml.jackson.annotation.JsonIgnoreProperties
-import com.fasterxml.jackson.annotation.JsonProperty
 import com.persagy.server.datacenter.models.entities.graphtype.MPoint
 import javax.persistence.Column
 import javax.persistence.Table
@@ -15,24 +13,18 @@ import javax.persistence.Table
  */
 @Table(name = "revit.connector")
 @JsonIgnoreProperties(ignoreUnknown = true)
-class Connector : BaseComponent(){
+class Connector : BaseComponent(),Cloneable{
 
     /** 所属对象的id */
     @Column(name = "belong")
-    @JSONField(serialize = false)
+//    @JSONField(serialize = false)
     var belong: String? = null
 
     /** 所属对象的类型(pipe, duct, others, equipment, component) */
     @Column(name = "belong_type")
-    @JSONField(serialize = false)
+//    @JSONField(serialize = false)
     var belongType: String? = null
 
-    /** 名称 */
-    @Column(name = "name")
-    @JSONField(name = "name")
-    @JsonProperty("name")
-    var name: String? = null
-
 //    /** 对应Revit模型id */
 //    @ApiModelProperty(value = "对应Revit模型id")
 //    @Column(name = "source_id")
@@ -42,44 +34,44 @@ class Connector : BaseComponent(){
 
     /** 所属域 */
     @Column(name = "domain")
-    @JSONField(name = "domain")
-    @JsonProperty("domain")
+//    @JSONField(name = "domain")
+//    @JsonProperty("domain")
     var domain: String? = null
 
     /** 位置信息 */
     @Column(name = "origin")
-    @JSONField(name = "origin")
-    @JsonProperty("origin")
+//    @JSONField(name = "origin")
+//    @JsonProperty("origin")
     var origin: MPoint? = null
 
     /** 描述 */
     @Column(name = "description")
-    @JSONField(name = "description")
-    @JsonProperty("description")
+//    @JSONField(name = "description")
+//    @JsonProperty("description")
     var description: String? = null
 
     /** 是否连接其他连接件 */
     @Column(name = "connected")
-    @JSONField(name = "isConnected")
-    @JsonProperty("isConnected")
+//    @JSONField(name = "isConnected")
+//    @JsonProperty("isConnected")
     var isConnected: Boolean? = null
 
     /** 所属对象的revit_id */
     @Column(name = "owner")
-    @JSONField(name = "owner")
-    @JsonProperty("owner")
+//    @JSONField(name = "owner")
+//    @JsonProperty("owner")
     var owner: String? = null
 
     /** 连接的连接件id */
     @Column(name = "connected_ids")
-    @JSONField(name = "connectedIds")
-    @JsonProperty("connectedIds")
+//    @JSONField(name = "connectedIds")
+//    @JsonProperty("connectedIds")
     var connectedIds: ArrayList<String>? = null
 
     /** 管道系统类型名称 */
     @Column(name = "mep_system_type")
-    @JSONField(name = "mepSystemTypeName")
-    @JsonProperty("mepSystemTypeName")
+//    @JSONField(name = "mepSystemTypeName")
+//    @JsonProperty("mepSystemTypeName")
     var mepSystemType: String? = null
 
 //    /** 连接件连接的连接件id */
@@ -91,15 +83,22 @@ class Connector : BaseComponent(){
 
     /** 连接件连接的连接件id */
     @Column(name = "connect_id_json")
-    @JSONField(name = "connectId")
-    @JsonProperty("connectId")
+//    @JSONField(name = "connectId")
+//    @JsonProperty("connectId")
     var connectIdJson: ArrayList<String>? = null
 
     var isUsed: Boolean? = null
 
     /** 所属BIMID */
     @Column(name = "belong_bimid")
-    @JSONField(name = "belongBimId")
-    @JsonProperty("belongBimId")
+//    @JSONField(name = "belongBimId")
+//    @JsonProperty("belongBimId")
     var belongBimId: String? = null
+
+    @Override
+    public override fun clone():Connector{
+        return super.clone() as Connector
+    }
+
+
 }

+ 28 - 0
datacenter/src/main/kotlin/com/persagy/server/models/object/ClassCodeEnum.kt

@@ -0,0 +1,28 @@
+package com.persagy.server.models.`object`
+
+import java.util.*
+
+
+/**
+ *
+ * @author  Cainga
+ * @date  2021/2/24 10:32
+ */
+enum class ClassCodeEnum(val cname: String) {
+    ACVTIO("通风风口"),
+    FFSCIO("排烟风口"),
+    ACATIO("空调风口"),
+    ACVTSF("通风风机"),
+    ACATAH("空调机组"),
+    ACATFU("新风机组");
+
+    open fun toList(): List<String> {
+        val list = ArrayList<String>() //Lists.newArrayList()其实和new ArrayList()几乎一模
+        //  一样, 唯一它帮你做的(其实是javac帮你做的), 就是自动推导(不是"倒")尖括号里的数据类型.
+        for (classCodeEnum in ClassCodeEnum.values()) {
+            list.add(classCodeEnum.name)
+        }
+        return list
+    }
+
+}

+ 18 - 0
datacenter/src/main/kotlin/com/persagy/server/models/object/NetWork.kt

@@ -0,0 +1,18 @@
+package com.persagy.server.models.`object`
+
+/**
+ *
+ * @author  Cainga
+ * @date  2021/2/27 11:08
+ */
+open class NetWork {
+
+    var fullConnectors: HashSet<String>? = null
+
+    constructor(fullConnectors: HashSet<String>?, directConnectors: HashSet<String>?) {
+        this.fullConnectors = fullConnectors
+        this.directConnectors = directConnectors
+    }
+
+    var directConnectors: HashSet<String>? = null
+}