Browse Source

********************WX******************
关系查询搜索

zhangweixin 4 years ago
parent
commit
97ac92fb72

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

@@ -102,7 +102,7 @@ open class Floor : BaseInfo() {
     /** 楼层顺序码 */
     @Schema(description = "楼层顺序码")
     @Column(name = "sequence_id")
-    var floorSequenceId: Int? = null
+    var floorSequenceID: Int? = null
 
     /** 楼层常驻人数 */
     @Schema(description = "楼层常驻人数")

+ 1 - 0
data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/tool/DictInfoTools.kt

@@ -54,6 +54,7 @@ object DictInfoTools {
             "buildQRCode" -> true
             "bimIdPre" -> true
             "floorSequenceId" -> true
+            "floorSequenceID" -> true
             "permanentPeopleNum" -> true
             "floorIdentity" -> true
             "depth" -> true

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

@@ -63,8 +63,8 @@ class TopicReceiver {
      *
      * @param
      */
-//    @RabbitListener(queues = ["queue-center-adm"])
-//    @RabbitHandler
+    @RabbitListener(queues = ["queue-center-adm"])
+    @RabbitHandler
     fun receiveMessage(message: String) {
         try {
             println("接收数据中心消息 , $message")

+ 3 - 1
datacenter/src/main/kotlin/com/persagy/server/services/relation_calc/RelationCalcService.kt

@@ -1142,10 +1142,10 @@ open class RelationCalcService {
             try {
                 upDateBiaoji(projectId, "eq2fl", 3)
                 upDateBiaoji(projectId, "fl2sp", 3)
-
                 val entity = relationTypeProjectservice.select(SFilter.eq("projectId", projectId), SFilter.eq("relationType", "eq2sp_SensorRelationship_ss2sp")).entity()
                 if (entity != null) {
                     entity.computationalState = 3
+                    entity.computingTime = IdUtils.time()
                     relationTypeProjectservice.update(entity)
                 }
             } catch (e: Exception) {
@@ -1162,6 +1162,7 @@ open class RelationCalcService {
                     val entity = relationTypeProjectservice.select(SFilter.eq("projectId", projectId), SFilter.eq("relationType", "eq2sp_SensorRelationship_ss2sp")).entity()
                     if (entity != null) {
                         entity.computationalState = 1
+                        entity.computingTime = IdUtils.time()
                         relationTypeProjectservice.update(entity)
                     }
                 } catch (e: Exception) {
@@ -1200,6 +1201,7 @@ open class RelationCalcService {
                 val entity = relationTypeProjectservice.select(SFilter.eq("projectId", projectId), SFilter.eq("relationType", "eq2sp_SensorRelationship_ss2sp")).entity()
                 if (entity != null) {
                     entity.computationalState = 1
+                    entity.computingTime = IdUtils.time()
                     relationTypeProjectservice.update(entity)
                 }
             }

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

@@ -25,8 +25,8 @@ server:
 
 spring:
   datasource:
-    url:                                jdbc:postgresql://192.168.64.14:5432/datacenterlabsl
-#    url:                                jdbc:postgresql://datacenter:5432/datacenterlabsl
+#    url:                                jdbc:postgresql://192.168.64.14:5432/datacenterlabsl
+    url:                                jdbc:postgresql://datacenter:5432/datacenterlabsl
 #    url:                                jdbc:postgresql://192.168.64.15:5432/datacenter
 #    url:                                jdbc:postgresql://datacenter:5432/datacenter
     username:                           postgres

+ 11 - 2
datasyn/src/main/kotlin/com/persagy/server/syn/controllers/obj/RelToFromController.kt

@@ -323,13 +323,22 @@ class RelToFromController {
     fun eq2Sp(@RequestParam projectId: String,@RequestParam graphCode: String,@RequestParam type: String,@RequestParam isDel: Boolean = false): SBaseResponse {
         try {
             val dictProject = dictProjectService.select(SFilter.eq("id", projectId)).entity()
+
+            var typer = ""
+            if (graphCode == "MechForArch") {
+                typer = "eq2sp_for"
+            }else {
+                typer = "eq2sp_in"
+            }
+
             val rEq2SpList = rEq2SpService.select(
-                    SFilter.eq("projectId", projectId)
+                    SFilter.eq("projectId", projectId),
+                SFilter.eq("type", typer)
             ).exec()
             if (rEq2SpList.size>0) {
                 for (rEq2Sp in rEq2SpList) {
                     if (isDel) {
-                        val toJsonObj = Configure.toJsonObj(graphCode, type, rEq2Sp.id1!!, null)
+                        val toJsonObj = Configure.toJsonObj(graphCode, type, rEq2Sp.id1!!, rEq2Sp.id2)
                         EquipApi.delRel(dictProject!!.groupCode!!, projectId,toJsonObj)
                     }
                     val toJsonObjArray =

+ 4 - 4
datasyn/src/main/kotlin/com/persagy/server/syn/models/tools/FloorUtil.kt

@@ -175,8 +175,8 @@ object FloorUtil {
                         "bimId" -> floor.bimId =  mapObj[key]!!.toString()
                         "modelId" -> floor.modelId =  mapObj[key]!!.toString()
                         "bimLocation" -> floor.bimLocation =  mapObj[key]!!.toString()
-                        "floorSequenceId" -> floor.floorSequenceId =  mapObj[key]!!.toString().toInt()
-                        "floorSequenceID" -> floor.floorSequenceId =  mapObj[key]!!.toString().toInt()
+                        "floorSequenceId" -> floor.floorSequenceID =  mapObj[key]!!.toString().toInt()
+                        "floorSequenceID" -> floor.floorSequenceID =  mapObj[key]!!.toString().toInt()
                         "permanentPeopleNum" -> floor.permanentPeopleNum =  mapObj[key]!!.toString().toInt()
                         "floorIdentity" -> floor.floorIdentity =  mapObj[key]!!.toString()
                         "outline" -> {
@@ -218,8 +218,8 @@ object FloorUtil {
         hashMap["projectId"] = projectId
         hashMap["objType"] = "floor"
         hashMap["classCode"] = "floor"
-        hashMap["floorSequenceId"] = floor.floorSequenceId
-        hashMap["floorSequenceID"] = floor.floorSequenceId
+        hashMap["floorSequenceId"] = floor.floorSequenceID
+        hashMap["floorSequenceID"] = floor.floorSequenceID
         if (!floor.localName.isNullOrEmpty()){
             hashMap["localName"] = floor.localName
         }else {

+ 1 - 1
datasyn/src/main/kotlin/com/persagy/server/syn/task/SchedulerTask.kt

@@ -53,7 +53,7 @@ class SchedulerTask {
     //cron表达式:每隔5秒执行一次
 //    @Scheduled(cron = "0 */5 * * * ?")
 //    @Scheduled(cron="0/30 * *  * * ? ")   //每5秒执行一次
-    @Scheduled(cron = "0 */1 * * * ?")
+//    @Scheduled(cron = "0 */1 * * * ?")
     fun scheduled() {
         logger.info("同步数据中心任务开始至中台")
         messageProcessing.syncDataCenter()

+ 1 - 1
datasyn/src/main/kotlin/com/persagy/server/syn/task/SchedulerTaskRel.kt

@@ -53,7 +53,7 @@ class SchedulerTaskRel {
     //cron表达式:每隔5秒执行一次
 //    @Scheduled(cron = "0 */5 * * * ?")
 //    @Scheduled(cron="0/5 * *  * * ? ")   //每5秒执行一次
-    @Scheduled(cron = "0 */3 * * * ?")
+//    @Scheduled(cron = "0 */3 * * * ?")
     fun scheduled() {
         logger.info("同步数据中心任务开始至数据中台-关系数据")
         messageProcessing.syncDataCenterRel()

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

@@ -7,7 +7,7 @@ spring:
     #    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://8.140.129.63:5432/datacenter
     username:                           postgres
     #    password:                           persagy_2020qwe!@#
     password:                           cGVyc2FneV8yMDIwcXdlIUAj
@@ -22,7 +22,7 @@ spring:
     virtual-host: /test
 
 server:
-  port: 8082
+  port: 8086
 
 # spring-cloud相关配置
 eureka:

+ 1 - 1
equip-component/build.gradle

@@ -61,7 +61,7 @@ dependencies {
 
     ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
     // spring cloud 依赖
-    compile group: 'org.springframework.cloud', name: 'spring-cloud-starter-eureka', version: SPRING_CLOUD_VERSION
+//    compile group: 'org.springframework.cloud', name: 'spring-cloud-starter-eureka', version: SPRING_CLOUD_VERSION
 
     ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
     // MySQL