Bladeren bron

官网全连接计算

caiaf 4 jaren geleden
bovenliggende
commit
c93ad7437c

+ 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>
 
 
 

+ 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
+    }
+
+}