Browse Source

********************WX***********************
修改查询关系视图

zhangweixin 4 years ago
parent
commit
476c7acebb
36 changed files with 186 additions and 145 deletions
  1. 1 1
      data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/objects/Shaft.kt
  2. 2 2
      data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/rel/RSh2Sp.kt
  3. 1 1
      data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/rel/archforarch/RBd2BdTwo.kt
  4. 1 1
      data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/rel/archforarch/RBd2FlTwo.kt
  5. 1 1
      data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/rel/archforarch/RBd2ShTwo.kt
  6. 1 1
      data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/rel/archforarch/RBd2SpTwo.kt
  7. 1 1
      data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/rel/archforarch/RFl2BdTwo.kt
  8. 1 1
      data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/rel/archforarch/RFl2FlTwo.kt
  9. 1 1
      data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/rel/archforarch/RFl2ShTwo.kt
  10. 1 1
      data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/rel/archforarch/RFl2SpTwo.kt
  11. 1 1
      data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/rel/archforarch/RSh2BdTwo.kt
  12. 1 1
      data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/rel/archforarch/RSh2FlTwo.kt
  13. 1 1
      data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/rel/archforarch/RSh2ShTwo.kt
  14. 1 1
      data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/rel/archforarch/RSh2SpTwo.kt
  15. 1 1
      data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/rel/archforarch/RSp2BdTwo.kt
  16. 1 1
      data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/rel/archforarch/RSp2FlTwo.kt
  17. 1 1
      data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/rel/archforarch/RSp2ShTwo.kt
  18. 1 1
      data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/rel/archforarch/RSp2SpTwo.kt
  19. 2 2
      datacenter/src/main/kotlin/com/persagy/server/controllers/graphtype/GraphicTypeController.kt
  20. 2 4
      datacenter/src/main/kotlin/com/persagy/server/jms/TopicReceiver.kt
  21. 33 33
      datacenter/src/main/kotlin/com/persagy/server/mappers/IRelationExcelImportMapper.kt
  22. 1 1
      datacenter/src/main/kotlin/com/persagy/server/mappers/StatisticsCountMapper.kt
  23. 14 15
      datacenter/src/main/kotlin/com/persagy/server/services/graphtype/GraphicTypeService.kt
  24. 1 14
      datacenter/src/main/kotlin/com/persagy/server/services/graphtype/RelationTypeProjectService.kt
  25. 17 17
      datacenter/src/main/kotlin/com/persagy/server/services/relation_calc/ManualRelationAddService.kt
  26. 5 6
      datacenter/src/main/kotlin/com/persagy/server/services/relation_calc/ManualRelationCalcService.kt
  27. 2 2
      datacenter/src/main/resources/application-dev.yml
  28. 7 7
      datacenter/src/main/resources/application-test.yml
  29. 55 0
      datasyn/src/main/kotlin/com/persagy/server/syn/controllers/obj/TestControllers.kt
  30. 9 9
      datasyn/src/main/resources/application-dev.yml
  31. 1 1
      equip-component/src/main/kotlin/com/persagy/server/dao/mappers/StatisticsCountMapper.kt
  32. 2 3
      equip-component/src/main/kotlin/com/persagy/server/models/VEquipComponentCount.kt
  33. 10 5
      equip-component/src/main/kotlin/com/persagy/server/service/CustomSqlService.kt
  34. 2 4
      equip-component/src/main/kotlin/com/persagy/server/service/objects/EquipmentService.kt
  35. 1 1
      equip-component/src/main/kotlin/com/persagy/server/utils/DataVerification.kt
  36. 3 2
      equip-component/src/main/resources/application-test.yml

+ 1 - 1
data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/objects/Shaft.kt

@@ -131,7 +131,7 @@ class Shaft : BaseInfo() {
 
     /** 竖井内的业务空间  self = true  同样的对象查询时 id可以互相调换查询   */
    @Schema(description = "级联-竖井内的业务空间")
-    @SCascade(table="relationship.r_sh2sp", idColumn="sh_id", childIdColumn="sp_id", self = false,filter = "type = 'sh2sp'")
+    @SCascade(table="relationship.r_sh2sp", idColumn="id1", childIdColumn="id2", self = false,filter = "type = 'sh2sp'")
     var spaceList: ArrayList<ZoneSpace>? = null
 
 

+ 2 - 2
data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/rel/RSh2Sp.kt

@@ -44,13 +44,13 @@ class RSh2Sp : RBaseInfo(){
     /** 竖井Id */
     @Schema(description = "竖井Id")
     @Id
-    @Column(name = "sh_id")
+    @Column(name = "id1")
     var id1: String? = null
 
     /** 空间Id */
     @Schema(description = "空间Id")
     @Id
-    @Column(name = "sp_id")
+    @Column(name = "id2")
     var id2: String? = null
 
     /** 项目Id */

+ 1 - 1
data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/rel/archforarch/RBd2BdTwo.kt

@@ -38,7 +38,7 @@ import javax.persistence.Table
  * @author 张维新
  */
 @Schema(description = "建筑和建筑关系")
-@Table(name = "relationship.r_bd2bd")
+@Table(name = "relationship.v_bd2bd")
 class RBd2BdTwo : RBaseInfo(){
 
     /** 空间Id */

+ 1 - 1
data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/rel/archforarch/RBd2FlTwo.kt

@@ -38,7 +38,7 @@ import javax.persistence.Table
  * @author 张维新
  */
 @Schema(description = "建筑和楼层关系")
-@Table(name = "relationship.r_bd2fl")
+@Table(name = "relationship.v_bd2fl")
 class RBd2FlTwo : RBaseInfo(){
 
     /** 空间Id */

+ 1 - 1
data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/rel/archforarch/RBd2ShTwo.kt

@@ -38,7 +38,7 @@ import javax.persistence.Table
  * @author 张维新
  */
 @Schema(description = "建筑和竖井关系")
-@Table(name = "relationship.r_bd2sh")
+@Table(name = "relationship.v_bd2sh")
 class RBd2ShTwo : RBaseInfo(){
 
     /** 空间Id */

+ 1 - 1
data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/rel/archforarch/RBd2SpTwo.kt

@@ -38,7 +38,7 @@ import javax.persistence.Table
  * @author 张维新
  */
 @Schema(description = "建筑和空间关系")
-@Table(name = "relationship.r_bd2sp")
+@Table(name = "relationship.v_bd2sp")
 class RBd2SpTwo : RBaseInfo(){
 
     /** 空间Id */

+ 1 - 1
data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/rel/archforarch/RFl2BdTwo.kt

@@ -38,7 +38,7 @@ import javax.persistence.Table
  * @author 张维新
  */
 @Schema(description = "楼层和楼层关系")
-@Table(name = "relationship.r_fl2bd")
+@Table(name = "relationship.v_fl2bd")
 class RFl2BdTwo : RBaseInfo(){
 
     /** 空间Id */

+ 1 - 1
data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/rel/archforarch/RFl2FlTwo.kt

@@ -38,7 +38,7 @@ import javax.persistence.Table
  * @author 张维新
  */
 @Schema(description = "楼层和楼层关系")
-@Table(name = "relationship.r_fl2fl")
+@Table(name = "relationship.v_fl2fl")
 class RFl2FlTwo : RBaseInfo(){
 
     /** 空间Id */

+ 1 - 1
data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/rel/archforarch/RFl2ShTwo.kt

@@ -38,7 +38,7 @@ import javax.persistence.Table
  * @author 张维新
  */
 @Schema(description = "楼层和竖井关系")
-@Table(name = "relationship.r_fl2sh")
+@Table(name = "relationship.v_fl2sh")
 class RFl2ShTwo : RBaseInfo(){
 
     /** 空间Id */

+ 1 - 1
data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/rel/archforarch/RFl2SpTwo.kt

@@ -38,7 +38,7 @@ import javax.persistence.Table
  * @author 张维新
  */
 @Schema(description = "竖井和空间关系")
-@Table(name = "relationship.r_fl2sp")
+@Table(name = "relationship.v_fl2sp")
 class RFl2SpTwo : RBaseInfo(){
 
     /** 空间Id */

+ 1 - 1
data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/rel/archforarch/RSh2BdTwo.kt

@@ -38,7 +38,7 @@ import javax.persistence.Table
  * @author 张维新
  */
 @Schema(description = "竖井和空间关系")
-@Table(name = "relationship.r_sh2bd")
+@Table(name = "relationship.v_sh2bd")
 class RSh2BdTwo : RBaseInfo(){
 
     /** 空间Id */

+ 1 - 1
data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/rel/archforarch/RSh2FlTwo.kt

@@ -38,7 +38,7 @@ import javax.persistence.Table
  * @author 张维新
  */
 @Schema(description = "竖井和空间关系")
-@Table(name = "relationship.r_sh2fl")
+@Table(name = "relationship.v_sh2fl")
 class RSh2FlTwo : RBaseInfo(){
 
     /** 空间Id */

+ 1 - 1
data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/rel/archforarch/RSh2ShTwo.kt

@@ -38,7 +38,7 @@ import javax.persistence.Table
  * @author 张维新
  */
 @Schema(description = "竖井和空间关系")
-@Table(name = "relationship.r_sh2sh")
+@Table(name = "relationship.v_sh2sh")
 class RSh2ShTwo : RBaseInfo(){
 
     /** 空间Id */

+ 1 - 1
data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/rel/archforarch/RSh2SpTwo.kt

@@ -38,7 +38,7 @@ import javax.persistence.Table
  * @author 张维新
  */
 @Schema(description = "竖井和空间关系")
-@Table(name = "relationship.r_sh2sp")
+@Table(name = "relationship.v_sh2sp")
 class RSh2SpTwo : RBaseInfo(){
 
     /** 空间Id */

+ 1 - 1
data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/rel/archforarch/RSp2BdTwo.kt

@@ -38,7 +38,7 @@ import javax.persistence.Table
  * @author 张维新
  */
 @Schema(description = "空间和建筑关系")
-@Table(name = "relationship.r_sp2bd")
+@Table(name = "relationship.v_sp2bd")
 class RSp2BdTwo : RBaseInfo(){
 
     /** 空间Id */

+ 1 - 1
data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/rel/archforarch/RSp2FlTwo.kt

@@ -38,7 +38,7 @@ import javax.persistence.Table
  * @author 张维新
  */
 @Schema(description = "空间和楼层关系")
-@Table(name = "relationship.r_sp2fl")
+@Table(name = "relationship.v_sp2fl")
 class RSp2FlTwo : RBaseInfo(){
 
     /** 空间Id */

+ 1 - 1
data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/rel/archforarch/RSp2ShTwo.kt

@@ -38,7 +38,7 @@ import javax.persistence.Table
  * @author 张维新
  */
 @Schema(description = "空间和竖井关系")
-@Table(name = "relationship.r_sp2sh")
+@Table(name = "relationship.v_sp2sh")
 class RSp2ShTwo : RBaseInfo(){
 
     /** 空间Id */

+ 1 - 1
data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/rel/archforarch/RSp2SpTwo.kt

@@ -38,7 +38,7 @@ import javax.persistence.Table
  * @author 张维新
  */
 @Schema(description = "空间和空间关系")
-@Table(name = "relationship.r_sp2sp")
+@Table(name = "relationship.v_sp2sp")
 class RSp2SpTwo : RBaseInfo(){
 
     /** 空间Id */

+ 2 - 2
datacenter/src/main/kotlin/com/persagy/server/controllers/graphtype/GraphicTypeController.kt

@@ -180,9 +180,9 @@ open class GraphicTypeController {
      */
     @Operation(summary = "导入excel-点表", description = "")
     @PostMapping("/import/point")
-    fun importExcelPointLocalId(@RequestParam("file") file: MultipartFile,@RequestParam relType: String) : SBaseResponse{
+    fun importExcelPointLocalId(@RequestParam("file") file: MultipartFile) : SBaseResponse{
         try {
-            return RelationTypeProjectService.importExcelPoint(file,relType)
+            return RelationTypeProjectService.importExcelPoint(file)
         }catch (e : Exception){
             return SBaseResponse(SResponseType.failure,"error:" + e.message)
         }

+ 2 - 4
datacenter/src/main/kotlin/com/persagy/server/jms/TopicReceiver.kt

@@ -32,8 +32,6 @@ import com.persagy.server.datacenter.models.jms.SynchronousMessage
 import com.persagy.server.datacenter.models.jms.SynchronousMessageRel
 import com.persagy.service.SObjectService
 import com.persagy.service.utils.SJsonUtil
-import org.springframework.amqp.rabbit.annotation.RabbitHandler
-import org.springframework.amqp.rabbit.annotation.RabbitListener
 import org.springframework.stereotype.Component
 import org.springframework.stereotype.Service
 import java.util.*
@@ -63,8 +61,8 @@ class TopicReceiver {
      *
      * @param
      */
-    @RabbitListener(queues = ["queue-center-adm"])
-    @RabbitHandler
+//    @RabbitListener(queues = ["queue-center-adm"])
+//    @RabbitHandler
     fun receiveMessage(message: String) {
         try {
             println("接收数据中心消息 , $message")

+ 33 - 33
datacenter/src/main/kotlin/com/persagy/server/mappers/IRelationExcelImportMapper.kt

@@ -259,41 +259,41 @@ interface IRelationExcelImportMapper {
     @Insert("INSERT INTO public.r_sh_through_sh(project_id, shaft_id, shaft_other_id,  sign) VALUES(#{projectId}, #{id1}, #{id2}, 1)")
     fun sh2sh(projectId: String, type: String, id1: String, id2: String)
 
-    /**
-     * 竖井与空间关系
-     *
-     * @param   projectId       项目ID
-     * @param   type            关系类型
-     * @param   id1             竖井ID
-     * @param   id2             空间ID
-     * @return  excel需要的记录
-     */
-    @Insert("INSERT INTO relationship.r_sh2sp(project_id, sh_id, sp_id, type, sign) VALUES(#{projectId}, #{id1}, #{id2}, #{type}, 1)")
-    fun sh2sp(projectId: String, type: String, id1: String, id2: String)
+//    /**
+//     * 竖井与空间关系
+//     *
+//     * @param   projectId       项目ID
+//     * @param   type            关系类型
+//     * @param   id1             竖井ID
+//     * @param   id2             空间ID
+//     * @return  excel需要的记录
+//     */
+//    @Insert("INSERT INTO relationship.r_sh2sp(project_id, sh_id, sp_id, type, sign) VALUES(#{projectId}, #{id1}, #{id2}, #{type}, 1)")
+//    fun sh2sp(projectId: String, type: String, id1: String, id2: String)
 
-    /**
-     * 建筑与空间关系
-     *
-     * @param   projectId       项目ID
-     * @param   type            关系类型
-     * @param   id1             建筑ID
-     * @param   id2             空间ID
-     * @return  excel需要的记录
-     */
-    @Insert("INSERT INTO relationship.r_sp2bd(project_id, sp_id, bd_id, type, sign) VALUES(#{projectId}, #{id2}, #{id1}, #{type}, 1)")
-    fun sp2bd(projectId: String, type: String, id1: String, id2: String)
+//    /**
+//     * 建筑与空间关系
+//     *
+//     * @param   projectId       项目ID
+//     * @param   type            关系类型
+//     * @param   id1             建筑ID
+//     * @param   id2             空间ID
+//     * @return  excel需要的记录
+//     */
+//    @Insert("INSERT INTO relationship.r_sp2bd(project_id, sp_id, bd_id, type, sign) VALUES(#{projectId}, #{id2}, #{id1}, #{type}, 1)")
+//    fun sp2bd(projectId: String, type: String, id1: String, id2: String)
 
-    /**
-     * 楼层与空间关系
-     *
-     * @param   projectId       项目ID
-     * @param   type            关系类型
-     * @param   id1             楼层ID
-     * @param   id2             空间ID
-     * @return  excel需要的记录
-     */
-    @Insert("INSERT INTO relationship.r_sp2fl(project_id, sp_id, fl_id, type, sign) VALUES(#{projectId}, #{id2}, #{id1}, #{type}, 1)")
-    fun sp2fl(projectId: String, type: String, id1: String, id2: String)
+//    /**
+//     * 楼层与空间关系
+//     *
+//     * @param   projectId       项目ID
+//     * @param   type            关系类型
+//     * @param   id1             楼层ID
+//     * @param   id2             空间ID
+//     * @return  excel需要的记录
+//     */
+//    @Insert("INSERT INTO relationship.r_sp2fl(project_id, sp_id, fl_id, type, sign) VALUES(#{projectId}, #{id2}, #{id1}, #{type}, 1)")
+//    fun sp2fl(projectId: String, type: String, id1: String, id2: String)
 
     /**
      * 空间与空间关系

+ 1 - 1
datacenter/src/main/kotlin/com/persagy/server/mappers/StatisticsCountMapper.kt

@@ -146,7 +146,7 @@ interface StatisticsCountMapper {
     /**
      * 竖井-关联业务空间完成度
      */
-    @Select("select count(distinct sh_id) from relationship.r_sh2sp where project_id = #{projectId} and type = 'sh2sp'")
+    @Select("select count(distinct id1) from relationship.r_sh2sp where project_id = #{projectId} and type = 'sh2sp'")
     fun shaft2SpCount(projectId: String): Long
 
     /**

+ 14 - 15
datacenter/src/main/kotlin/com/persagy/server/services/graphtype/GraphicTypeService.kt

@@ -95,39 +95,38 @@ object GraphicTypeService : RService<GraphicType>(SMybatisDao(GraphicType::class
                         }
                     }
                 }
-
                 pageQuery
             }else {
-                val relationTypeProjectList = service.select(SFilter.eq("projectId", Opt.projectId!!), SFilter.contain("name",content)).order("relationTypeCode").exec()
+                val relationTypeProjectList = service.select(SFilter.eq("projectId", Opt.projectId!!), SFilter.contain("relationTypeName",content)).order("relationTypeCode").exec()
                 if (relationTypeProjectList.size>0) {
                     val twoIds = HashSet<String>()
                     for (relationTypeProject in relationTypeProjectList) {
                         twoIds.add(relationTypeProject.graphicId!!)
                     }
-                    val graphicTypeTwoList = GraphicTypeService.select(SFilter.inList("id", twoIds.toList())).order("sort").exec()
+                    val graphicTypeTwoList = GraphicTypeService.select(SFilter.inList("graphTypeId", twoIds.toList())).order("sort").exec()
                     val oneIds = HashSet<String>()
                     for (graphicType in graphicTypeTwoList) {
                         oneIds.add(graphicType.parentId!!)
                         for (relationTypeProject in relationTypeProjectList) {
+                            if (graphicType.relationTypeProjectList.isNullOrEmpty()) {
+                                graphicType.relationTypeProjectList = ArrayList()
+                            }
                             if (relationTypeProject.graphicId == graphicType.graphTypeId ){
-                                if (graphicType.relationTypeProjectList.isNullOrEmpty()) {
-                                    graphicType.relationTypeProjectList = ArrayList()
-                                }else {
-                                    graphicType.relationTypeProjectList!!.add(relationTypeProject)
-                                }
+                                graphicType.relationTypeProjectList!!.add(relationTypeProject)
                             }
                         }
-
+//                        graphicType.relationTypeProjectList = relationTypeProjectList
                     }
-                    val graphicTypeList = GraphicTypeService.select(SFilter.inList("id", oneIds.toList())).exec()
+                    val graphicTypeList = GraphicTypeService.select(SFilter.inList("graphTypeId", oneIds.toList())).exec()
                     for (graphicType in graphicTypeList){
+                        if (graphicType.childGraphicTypeList.isNullOrEmpty()) {
+                            graphicType.childGraphicTypeList = ArrayList()
+                        }
                         for (graphicTypeTwo in graphicTypeTwoList) {
                             if (graphicTypeTwo.parentId == graphicType.graphTypeId){
-                                if (graphicType.childGraphicTypeList.isNullOrEmpty()) {
-                                    graphicType.childGraphicTypeList = ArrayList()
-                                }else {
-                                    graphicType.childGraphicTypeList!!.add(graphicTypeTwo)
-                                }
+
+                                graphicType.childGraphicTypeList!!.add(graphicTypeTwo)
+
                             }
                         }
                     }

+ 1 - 14
datacenter/src/main/kotlin/com/persagy/server/services/graphtype/RelationTypeProjectService.kt

@@ -36,7 +36,6 @@ import com.persagy.server.datacenter.models.entities.dictnew.DefFuncId
 import com.persagy.server.datacenter.models.entities.graphtype.RelationTypeProject
 import com.persagy.server.datacenter.models.entities.graphtype.rel.RelZoneSpace
 import com.persagy.server.datacenter.models.entities.objects.Equipment
-import com.persagy.server.datacenter.models.entities.rel.archforarch.RBd2Bd
 import com.persagy.server.mappers.IRelationExcelExportMapper
 import com.persagy.server.mappers.IRelationExcelImportMapper
 import com.persagy.server.services.base.RService
@@ -51,7 +50,6 @@ import com.persagy.service.utils.SSpringContextUtil
 import org.apache.poi.ss.usermodel.CellType
 import org.apache.poi.xssf.usermodel.XSSFSheet
 import org.apache.poi.xssf.usermodel.XSSFWorkbook
-
 import org.slf4j.LoggerFactory
 import org.springframework.web.multipart.MultipartFile
 import java.io.File
@@ -570,7 +568,7 @@ object RelationTypeProjectService : RService<RelationTypeProject>(SMybatisDao(Re
      * @param   zoneType        业务空间类型
      * @return  应答体
      */
-    fun importExcelPoint(file: MultipartFile,relType: String): SBaseResponse {
+    fun importExcelPoint(file: MultipartFile): SBaseResponse {
         try {
             if (file.isEmpty) {
                 throw Exception("未选择文件")
@@ -612,17 +610,6 @@ object RelationTypeProjectService : RService<RelationTypeProject>(SMybatisDao(Re
             workbook.write(os)
             os.flush()
             os.close()
-            try {
-                val relationTypeProjectService = SObjectService(SMybatisDao(RelationTypeProject::class.java))
-                val relationType = relationTypeProjectService.select(SFilter.eq("projectId", projectId!!),SFilter.eq("relationType", relType)).entity()
-                if (relationType!=null){
-                    relationType.fileName = fileName
-                    relationType.computingTime = IdUtils.time()
-                    relationTypeProjectService.update(relationType)
-                }
-            } catch (e: Exception) {
-                e.printStackTrace()
-            }
 
             return SBaseResponse(SResponseType.success,fileName)
         } catch (e: Exception) {

+ 17 - 17
datacenter/src/main/kotlin/com/persagy/server/services/relation_calc/ManualRelationAddService.kt

@@ -2141,8 +2141,8 @@ class ManualRelationAddService {
                         rBd2SpService.replace(rBd2Sp)
                     }
                 }
-            }else if (relationAddRequest.relType == "Fl2Bd_ArchForArch"||relationAddRequest.relType == "Fl2Fl_ArchForArch"
-                ||relationAddRequest.relType == "Fl2Sh_ArchForArch"||relationAddRequest.relType == "Fl2Sp_ArchForArch") {
+            }else if (relationAddRequest.relType == "fl2bd_ArchForArch"||relationAddRequest.relType == "fl2fl_ArchForArch"
+                ||relationAddRequest.relType == "fl2sh_ArchForArch"||relationAddRequest.relType == "fl2sp_ArchForArch") {
                 /** 楼层服务 */
                 val floorList = FloorService.select(SFilter.eq("projectId", projectId!!), SFilter.eq(relationAddRequest.type!!, relationAddRequest.mainContent!!)).exec()
                 if (floorList.size<1){
@@ -2160,7 +2160,7 @@ class ManualRelationAddService {
                     return sCreateResponse
                 }
 
-                if (relationAddRequest.relType == "Fl2Bd_ArchForArch") {
+                if (relationAddRequest.relType == "fl2bd_ArchForArch") {
                     for (fromContent in relationAddRequest.fromContent!!){
                         /** 去除主对象空间id */
                         val buildingToList = BuildingService.select(SFilter.eq("projectId", projectId), SFilter.eq(relationAddRequest.type!!, fromContent!!)).exec()
@@ -2196,7 +2196,7 @@ class ManualRelationAddService {
                         rFl2Bd.sign = 1
                         rFl2BdService.replace(rFl2Bd)
                     }
-                } else if (relationAddRequest.relType == "Fl2Fl_ArchForArch") {
+                } else if (relationAddRequest.relType == "fl2fl_ArchForArch") {
                     for (fromContent in relationAddRequest.fromContent!!){
                         /** 去除主对象空间id */
                         val floorToList = FloorService.select(SFilter.eq("projectId", projectId), SFilter.eq(relationAddRequest.type!!, fromContent!!)).exec()
@@ -2232,7 +2232,7 @@ class ManualRelationAddService {
                         rFl2Fl.sign = 1
                         rFl2FlService.replace(rFl2Fl)
                     }
-                } else if (relationAddRequest.relType == "Fl2Sh_ArchForArch") {
+                } else if (relationAddRequest.relType == "fl2sh_ArchForArch") {
                     for (fromContent in relationAddRequest.fromContent!!){
                         /** 去除主对象空间id */
                         val shaftToList = ShaftService.select(SFilter.eq("projectId", projectId), SFilter.eq(relationAddRequest.type!!, fromContent!!)).exec()
@@ -2269,7 +2269,7 @@ class ManualRelationAddService {
                         rFl2Sh.graphCode = relationAddRequest.graphicType
                         rFl2ShService.replace(rFl2Sh)
                     }
-                }else if (relationAddRequest.relType == "Fl2Sp_ArchForArch") {
+                }else if (relationAddRequest.relType == "fl2sp_ArchForArch") {
                     for (fromContent in relationAddRequest.fromContent!!){
                         /** 去除主对象空间id */
                         val spaceToList = relZoneSpaceService.select(SFilter.eq("projectId", projectId), SFilter.eq(relationAddRequest.type!!, fromContent)).exec()
@@ -2309,8 +2309,8 @@ class ManualRelationAddService {
                     }
                 }
 
-            }else if (relationAddRequest.relType == "Sh2Bd_ArchForArch"|| relationAddRequest.relType == "Sh2Fl_ArchForArch"||
-                relationAddRequest.relType == "Sh2Sh_ArchForArch"||relationAddRequest.relType == "Sh2Sp_ArchForArch") {
+            }else if (relationAddRequest.relType == "sh2bd_ArchForArch"|| relationAddRequest.relType == "sh2fl_ArchForArch"||
+                relationAddRequest.relType == "sh2sh_ArchForArch"||relationAddRequest.relType == "sh2sp_ArchForArch") {
                 /** 楼层服务 */
                 val shaftList = ShaftService.select(SFilter.eq("projectId", projectId!!), SFilter.eq(relationAddRequest.type!!, relationAddRequest.mainContent!!)).exec()
                 if (shaftList.size<1){
@@ -2327,7 +2327,7 @@ class ManualRelationAddService {
                     sCreateResponse.errorType = "1"
                     return sCreateResponse
                 }
-                if (relationAddRequest.relType == "Sh2Bd_ArchForArch"){
+                if (relationAddRequest.relType == "sh2bd_ArchForArch"){
                     for (fromContent in relationAddRequest.fromContent!!){
                         /** 去除主对象空间id */
                         val buildingToList = BuildingService.select(SFilter.eq("projectId", projectId), SFilter.eq(relationAddRequest.type!!, fromContent)).exec()
@@ -2363,7 +2363,7 @@ class ManualRelationAddService {
                         rSh2Bd.sign = 1
                         rSh2BdService.replace(rSh2Bd)
                     }
-                }else if (relationAddRequest.relType == "Sh2Fl_ArchForArch"){
+                }else if (relationAddRequest.relType == "sh2fl_ArchForArch"){
                     for (fromContent in relationAddRequest.fromContent!!){
                         /** 去除主对象空间id */
                         val floorToList = FloorService.select(SFilter.eq("projectId", projectId), SFilter.eq(relationAddRequest.type!!, fromContent)).exec()
@@ -2399,7 +2399,7 @@ class ManualRelationAddService {
                         rSh2Fl.sign = 1
                         rSh2FlService.replace(rSh2Fl)
                     }
-                }else if (relationAddRequest.relType == "Sh2Sh_ArchForArch"){
+                }else if (relationAddRequest.relType == "sh2sh_ArchForArch"){
                     for (fromContent in relationAddRequest.fromContent!!){
                         /** 去除主对象空间id */
                         val shaftToList = ShaftService.select(SFilter.eq("projectId", projectId), SFilter.eq(relationAddRequest.type!!, fromContent)).exec()
@@ -2436,7 +2436,7 @@ class ManualRelationAddService {
                         rSh2Sh.graphCode = relationAddRequest.graphicType
                         rSh2ShService.replace(rSh2Sh)
                     }
-                }else if (relationAddRequest.relType == "Sh2Sp_ArchForArch"){
+                }else if (relationAddRequest.relType == "sh2sp_ArchForArch"){
                     for (fromContent in relationAddRequest.fromContent!!){
                         /** 去除主对象空间id */
                         val spaceToList = relZoneSpaceService.select(SFilter.eq("projectId", projectId), SFilter.eq(relationAddRequest.type!!, fromContent)).exec()
@@ -2475,8 +2475,8 @@ class ManualRelationAddService {
                         rSh2SpService.replace(rSh2Sp)
                     }
                 }
-            }else if(relationAddRequest.relType == "Sp2Bd_ArchForArch" ||relationAddRequest.relType == "Sp2Fl_ArchForArch"
-                    ||relationAddRequest.relType == "Sp2Sh_ArchForArch"||relationAddRequest.relType == "Sp2Sp_ArchForArch") {
+            }else if(relationAddRequest.relType == "sp2bd_ArchForArch" ||relationAddRequest.relType == "sp2fl_ArchForArch"
+                    ||relationAddRequest.relType == "sp2sh_ArchForArch"||relationAddRequest.relType == "sp2sp_ArchForArch") {
 
                 /** 楼层服务 */
                 val zoneSpaceList = relZoneSpaceService.select(SFilter.eq("projectId", projectId!!), SFilter.eq(relationAddRequest.type!!, relationAddRequest.mainContent!!)).exec()
@@ -2494,7 +2494,7 @@ class ManualRelationAddService {
                     sCreateResponse.errorType = "1"
                     return sCreateResponse
                 }
-                if (relationAddRequest.relType == "Sp2Sp_ArchForArch") {
+                if (relationAddRequest.relType == "sp2sp_ArchForArch") {
                     for (fromContent in relationAddRequest.fromContent!!){
                         /** 去除主对象空间id */
                         val spaceToList = relZoneSpaceService.select(SFilter.eq("projectId", projectId), SFilter.eq(relationAddRequest.type!!, fromContent)).exec()
@@ -2532,7 +2532,7 @@ class ManualRelationAddService {
                         rSp2SpService.replace(rSp2Sp)
                     }
 
-                }else if (relationAddRequest.relType == "Sp2Bd_ArchForArch") {
+                }else if (relationAddRequest.relType == "sp2bd_ArchForArch") {
                     for (fromContent in relationAddRequest.fromContent!!){
                         /** 去除主对象空间id */
                         val buildingToList = BuildingService.select(SFilter.eq("projectId", projectId), SFilter.eq(relationAddRequest.type!!, fromContent)).exec()
@@ -2569,7 +2569,7 @@ class ManualRelationAddService {
                         rSp2Bd.zoneType = zoneSpaceList[0].classCode
                         rSp2BdService.replace(rSp2Bd)
                     }
-                }else if (relationAddRequest.relType == "Sp2Fl_ArchForArchSp2Fl") {
+                }else if (relationAddRequest.relType == "sp2fl_ArchForArchSp2Fl") {
                     for (fromContent in relationAddRequest.fromContent!!){
                         /** 去除主对象空间id */
                         val floorToList = FloorService.select(SFilter.eq("projectId", projectId), SFilter.eq(relationAddRequest.type!!, fromContent)).exec()

+ 5 - 6
datacenter/src/main/kotlin/com/persagy/server/services/relation_calc/ManualRelationCalcService.kt

@@ -29,10 +29,8 @@ 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.Opt
 import com.persagy.server.datacenter.models.entities.dictnew.DefClass
 import com.persagy.server.datacenter.models.entities.graphtype.RelationTypeProject
-import com.persagy.server.datacenter.models.entities.graphtype.block.RelationAddRequest
 import com.persagy.server.datacenter.models.entities.graphtype.rel.*
 import com.persagy.server.datacenter.models.entities.graphtype.rel.control.*
 import com.persagy.server.datacenter.models.entities.graphtype.rel.drainage.*
@@ -42,10 +40,11 @@ import com.persagy.server.datacenter.models.entities.rel.*
 import com.persagy.server.datacenter.models.requests.ManualRelationCalcDel
 import com.persagy.server.datacenter.models.requests.ManualRelationCalcRequest
 import com.persagy.server.datacenter.models.response.ManualRelationCalcResponse
-import com.persagy.server.datacenter.models.response.ManualRelationCalcSCreateResponse
 import com.persagy.server.jms.RabbitMqService
 import com.persagy.server.services.base.CommonServices
-import com.persagy.server.services.objects.*
+import com.persagy.server.services.objects.BuildingService
+import com.persagy.server.services.objects.EquipmentService
+import com.persagy.server.services.objects.FloorService
 import com.persagy.server.services.rel.*
 import com.persagy.service.SObjectService
 import com.persagy.service.SPageContext
@@ -245,7 +244,7 @@ open class ManualRelationCalcService {
             }else if(manualRelationCalcRequest.relType == "fl2sp_ArchForArch"){
                 return queryFl2Sp(projectId,list,sQueryRequest,manualRelationCalcRequest)
             }else if(manualRelationCalcRequest.relType == "sh2bd_ArchForArch"){
-                rreturn querySh2Bd(projectId,list,sQueryRequest,manualRelationCalcRequest)eturn ManualRelationCalcResponse()
+                return querySh2Bd(projectId,list,sQueryRequest,manualRelationCalcRequest)
             }else if(manualRelationCalcRequest.relType == "sh2fl_ArchForArch"){
                 return querySh2Fl(projectId,list,sQueryRequest,manualRelationCalcRequest)
             }else if(manualRelationCalcRequest.relType == "sh2sh_ArchForArch"){
@@ -4478,7 +4477,7 @@ open class ManualRelationCalcService {
         val rBd2FlList = CommonServices.rBd2FlService.select(SFilter.eq("projectId", projectId), SFilter.eq("type", manualRelationCalcRequest.relType!!)).exec()
 
         val manualRelationCalcResponse = ManualRelationCalcResponse()
-        if (rBd2ShList.size>0) {
+        if (rBd2FlList.size>0) {
             if (!manualRelationCalcRequest.vague.isNullOrEmpty()){
                 list.add(SFilter.or(SFilter.contain("localId1",manualRelationCalcRequest.vague!!),SFilter.contain("localName1",manualRelationCalcRequest.vague!!)))
             }

+ 2 - 2
datacenter/src/main/resources/application-dev.yml

@@ -34,8 +34,8 @@ spring:
     type:                               com.alibaba.druid.pool.DruidDataSource
     driver-class-name:                  org.postgresql.Driver
 #    url:                                jdbc:postgresql://60.205.177.43:5432/datacenterlabsl
-#    url:                                jdbc:postgresql://192.168.64.15:5432/datacenterwanda
-    url:                                jdbc:postgresql://39.102.40.239:5432/datacenter
+    url:                                jdbc:postgresql://192.168.64.15:5432/datacenterwanda
+#    url:                                jdbc:postgresql://39.102.40.239:5432/datacenter
     username:                           postgres
 #    password:                           persagy_2020qwe!@#
     password:                           cGVyc2FneV8yMDIwcXdlIUAj

+ 7 - 7
datacenter/src/main/resources/application-test.yml

@@ -33,13 +33,13 @@ spring:
     username:                           postgres
     password:                           cGVyc2FneV8yMDIwcXdlIUAj
 
-  rabbitmq:
-    host: 192.168.64.15
-    port: 9936
-    username: admin
-    password: brzj123456
-    #虚拟host 可以不设置,使用server默认host
-    virtual-host: /test
+#  rabbitmq:
+#    host: 192.168.64.15
+#    port: 9936
+#    username: admin
+#    password: brzj123456
+#    #虚拟host 可以不设置,使用server默认host
+#    virtual-host: /test
 
   servlet:
     multipart:

+ 55 - 0
datasyn/src/main/kotlin/com/persagy/server/syn/controllers/obj/TestControllers.kt

@@ -40,6 +40,7 @@ import com.persagy.service.SBaseService
 import com.persagy.service.SObjectService
 import com.persagy.service.models.enums.SResponseType
 import com.persagy.service.models.responses.SBaseResponse
+import com.persagy.service.models.responses.SCreateResponse
 import io.swagger.v3.oas.annotations.Operation
 import io.swagger.v3.oas.annotations.tags.Tag
 import org.slf4j.LoggerFactory
@@ -47,6 +48,10 @@ import org.springframework.web.bind.annotation.PostMapping
 import org.springframework.web.bind.annotation.RequestMapping
 import org.springframework.web.bind.annotation.RequestParam
 import org.springframework.web.bind.annotation.RestController
+import java.io.File
+import java.io.FileWriter
+import java.io.Writer
+
 
 /**
  * 测试
@@ -127,5 +132,55 @@ class TestControllers {
     }
 
 
+    @Operation(summary = "已有的设备id ", description = "switch true  根据输入的项目 id  同步楼层,false 同步所有项目的 楼层")
+    @PostMapping(value = ["/equip-counts"])
+    fun equipIdCounts( @RequestParam projectId: String): SCreateResponse<Equipment> {
+        return try {
+
+        val equipmentList = equipmentService.select(SFilter.eq("projectId", projectId)).exec()
+        val listId = ArrayList<String>()
+        for (equipment in equipmentList) {
+            listId.add(equipment.id!!)
+        }
+        val sb = StringBuilder()
+        sb.append("(")
+        for (s in listId) {
+            sb.append("'").append(s).append("',")
+        }
+        sb.deleteCharAt(sb.length - 1)
+        sb.append(")")
+//        println(sb.toString())
+            System.out.println(sb.toString())
+//            println(sb.toString())
+
+            val file = File("D:/testdata/\\$112.json")
+            val out: Writer = FileWriter(file)
+            out.write(sb.toString())
+            out.close()
+        SCreateResponse(SResponseType.success)
+    } catch (e: Exception) {
+        e.printStackTrace()
+        SCreateResponse(SResponseType.failure, e.message!!)
+    }
+    }
+
+
+    fun println(msg: String) {
+        val segmentSize = 3 * 1024
+        val length: Int = msg.length
+        if (length <= segmentSize) { // 长度小于等于限制直接打印
+            System.out.println(msg)
+        } else {
+            while (msg.length > segmentSize) { // 循环分段打印日志
+                val logContent = msg.substring(0, segmentSize)
+               var  msg = msg.replace(logContent, "")
+
+                System.out.println(logContent)
+            }
+            System.out.println(msg)// 打印剩余日志
+        }
+
+    }
+
 
 }

+ 9 - 9
datasyn/src/main/resources/application-dev.yml

@@ -6,20 +6,20 @@ spring:
     #    username:                           postgres
     #    password:                           123qwe!@#
     #    url:                                jdbc:postgresql://192.168.64.14:5432/datacenterlabsl
-    url:                                jdbc:postgresql://192.168.64.15:5432/datacenter
-#    url:                                jdbc:postgresql://39.102.40.239:5432/datacenter
+#    url:                                jdbc:postgresql://192.168.64.15:5432/datacenter
+    url:                                jdbc:postgresql://39.102.40.239:5432/datacenter
     username:                           postgres
     #    password:                           persagy_2020qwe!@#
     password:                           cGVyc2FneV8yMDIwcXdlIUAj
 
     #配置rabbitMq 服务器
-#  rabbitmq:
-#    host: 39.102.43.179
-#    port: 9936
-#    username: admin
-#    password: brzj123456
-#    #虚拟host 可以不设置,使用server默认host
-#    virtual-host: /test
+  rabbitmq:
+    host: 39.102.43.179
+    port: 9936
+    username: admin
+    password: brzj123456
+    #虚拟host 可以不设置,使用server默认host
+    virtual-host: /test
 
 server:
   port: 8082

+ 1 - 1
equip-component/src/main/kotlin/com/persagy/server/dao/mappers/StatisticsCountMapper.kt

@@ -122,7 +122,7 @@ interface StatisticsCountMapper {
     /**
      * 竖井-关联业务空间完成度
      */
-    @Select("select count(distinct sh_id) from relationship.r_sh2sp where project_id = #{projectId} and type = 'sh2sp'")
+    @Select("select count(distinct id1) from relationship.r_sh2sp where project_id = #{projectId} and type = 'sh2sp'")
     fun shaft2SpCount(projectId: String): Long
 
     /**

+ 2 - 3
equip-component/src/main/kotlin/com/persagy/server/models/VEquipComponentCount.kt

@@ -26,7 +26,6 @@
 
 package com.persagy.server.models
 
-import com.alibaba.fastjson.annotation.JSONField
 import com.persagy.server.datacenter.models.entities.base.BaseInfo
 import io.swagger.v3.oas.annotations.media.Schema
 import javax.persistence.Column
@@ -48,10 +47,10 @@ class VEquipComponentCount : BaseInfo(){
 
     /** 分类 */
     @Schema(description = "分类")
-    @Column(name = "category")
+    @Column(name = "class_code")
     var category: String? = null
 
-    /** 分类名称 */
+    /** 分 */
     @Schema(description = "分类名称")
     @Column(name = "category_name")
     var categoryName: String? = null

+ 10 - 5
equip-component/src/main/kotlin/com/persagy/server/service/CustomSqlService.kt

@@ -110,18 +110,23 @@ class CustomSqlService {
             //项目中所有自定义信息点编码
 //            var projectCustomInforPoints=mapper.projectCustomInforPoints(projectId!!)
             //项目下所有动态信息点编码
-            var dynamicInfoPointCodes=mapper.dynamicInfoPointCodes(projectId!!)
+            var dynamicInfoPointCodes=mapper.dynamicInfoPointCodes(projectId)
             //项目下所有静态信息点编码
-            var staticInfoPointCodes=mapper.staticInfoPointCodes(projectId!!)
+            var staticInfoPointCodes=mapper.staticInfoPointCodes(projectId)
+            logger.debug("静态=${staticInfoPointCodes.size}")
             //项目下所有的设备
-            val projectEquipment =mapper.projectEquipment(projectId!!)
+            val projectEquipment =mapper.projectEquipment(projectId)
+            var infoPoint = InfoPoint()
+            infoPoint.dynamicInfoPointCounts = dynamicInfoPointCodes.size
+            infoPoint.staticInfoPointCounts = staticInfoPointCodes.size
 
             var hashMap=calculate(dynamicInfoPointCodes,staticInfoPointCodes,projectEquipment,0)
 
-            var infoPoint = InfoPoint()
+
 //          infoPoint.customInfoPointCounts=mapper.customInfoPointCounts(projectId!!)
-          infoPoint.customInfoPoint=hashMap["customInfoPoint"]
+//          infoPoint.customInfoPoint=hashMap["customInfoPoint"]
 //          infoPoint.dynamicInfoPointCounts=mapper.dynamicInfoPointCounts()
+
           infoPoint.dynamicInfoPoint=hashMap["dynamicInfoPoint"]
           infoPoint.staticInfoPointCounts=mapper.staticInfoPointCounts()
           infoPoint.staticInfoPoint=hashMap["staticInfoPoint"]

+ 2 - 4
equip-component/src/main/kotlin/com/persagy/server/service/objects/EquipmentService.kt

@@ -673,8 +673,6 @@ object EquipmentService : Service<Equipment>(SMybatisDao(Equipment::class.java))
                         }
                     }
 
-
-
                     if (!equipUpDateEnclosure.checkReport.isNullOrEmpty()){
 
                         val containsKey1 = equip!!.infos!!.containsKey(Opt.CHECKREPORT)
@@ -829,7 +827,7 @@ object EquipmentService : Service<Equipment>(SMybatisDao(Equipment::class.java))
                     }
 
                     /** 更新设备 */
-                    EquipmentService.update(equip!!,null, SFilter.eq("projectId",projectId!!),SFilter.eq("EquipId",equipUpDateEnclosure.equipId!!))
+                    EquipmentService.update(equip!!,null, SFilter.eq("projectId",projectId!!),SFilter.eq("id",equipUpDateEnclosure.equipId!!))
 
                 }
 
@@ -846,7 +844,7 @@ object EquipmentService : Service<Equipment>(SMybatisDao(Equipment::class.java))
                     jsonObject.put("infos", jsonArray)
 
                     /** 发送消息 */
-                    messageHandler.sendMessage(jsonObject.toString())
+//                    messageHandler.sendMessage(jsonObject.toString())
                 } catch (e: Exception) {
                     e.printStackTrace()
                 }

+ 1 - 1
equip-component/src/main/kotlin/com/persagy/server/utils/DataVerification.kt

@@ -132,7 +132,7 @@ object DataVerification {
 
             for (content in equipAssetComponentsList!!) {
 
-                val exec = EquipmentService.select(SFilter.lte(SLength("classCode"), 6), SFilter.eq("parentId", content.id!!)).exec()
+                val exec = EquipmentService.select(SFilter.lte(SLength("classCode"), 8), SFilter.eq("parentId", content.id!!)).exec()
 
                 content.count = exec.size
 

+ 3 - 2
equip-component/src/main/resources/application-test.yml

@@ -19,8 +19,9 @@ spring:
 #    url:                                jdbc:postgresql://data-center:5432/datacenter
 #    username:                           postgres
 #    password:                           123qwe!@#
-#    url:                                jdbc:postgresql://datacenter:5432/datacenter
-    url:                                jdbc:postgresql://192.168.64.15:5432/datacenter
+    url:                                jdbc:postgresql://datacenter:5432/datacenter
+#    url:                                jdbc:postgresql://192.168.64.15:5432/datacenter
+#    url:                                jdbc:postgresql://192.168.64.14:5432/datacenterlabsl
 #    url:                                jdbc:postgresql://datacenter:5432/datacenterlabsl
     username:                           postgres
 #    password:                           persagy_2020qwe!@#