Browse Source

********************WX******************
调整空间关系

zhangweixin 4 years ago
parent
commit
b2eecea30b

+ 94 - 0
data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/graphtype/RelExamples.kt

@@ -0,0 +1,94 @@
+/*
+ * *********************************************************************************************************************
+ *
+ *          !!
+ *        .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-2021.  博锐尚格科技股份有限公司
+ *        ~8888'
+ *        .!88~                                                                     All rights reserved.
+ *
+ * *********************************************************************************************************************
+ */
+
+package com.persagy.server.datacenter.models.entities.graphtype
+
+import io.swagger.v3.oas.annotations.media.Schema
+import javax.persistence.Column
+import javax.persistence.Id
+import javax.persistence.Table
+
+/**
+ * 关系对照表
+ */
+@Schema(description = "关系类型实体类")
+@Table(name = "graphtype.rel_examples")
+class RelExamples {
+
+
+    /** 图类型编码 */
+    @Schema(description = "图类型编码")
+    @Id
+    @Column(name = "group_code")
+    var groupCode: String? = null
+
+    /** 边类型编码 */
+    @Schema(description = "边类型编码")
+    @Id
+    @Column(name = "rel_code")
+    var relCode: String? = null
+
+    /** 边类型名称 */
+    @Schema(description = "边类型名称")
+    @Column(name = "rel_name")
+    var relName: String? = null
+
+    /** 关系两侧对象类别 */
+    @Schema(description = "关系两侧对象类别")
+    @Column(name = "rel_object_category")
+    var relObjectCategory: String? = null
+
+    /** 图分类 */
+    @Schema(description = "图分类")
+    @Column(name = "group_name")
+    var group_name: String? = null
+
+    /** 图类型名称 */
+    @Schema(description = "图类型名称")
+    @Column(name = "group_category")
+    var groupCategory: String? = null
+
+    /** 边方向性 */
+    @Schema(description = "边方向性")
+    @Column(name = "directivity")
+    var directivity: String? = null
+
+    /** 边属性 */
+    @Schema(description = "边属性")
+    @Column(name = "properties")
+    var properties: String? = null
+
+    /** 备注 */
+    @Schema(description = "备注")
+    @Column(name = "note")
+    var note: String? = null
+
+    /** 主要连接对象 */
+    @Schema(description = "主要连接对象")
+    @Column(name = "connection_object")
+    var connectionObject: String? = null
+
+}

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

@@ -29,26 +29,26 @@ server:
 spring:
   datasource:
 #    url:                                jdbc:postgresql://192.168.64.14:5432/datacenterlabsl
-#    url:                                jdbc:postgresql://datacenter:5432/datacenterlabsl
-    url:                                jdbc:postgresql://datacenter:5432/datacenter
+    url:                                jdbc:postgresql://datacenter:5432/datacenterlabsl
+#    url:                                jdbc:postgresql://datacenter:5432/datacenter
     username:                           postgres
     password:                           cGVyc2FneV8yMDIwcXdlIUAj
 
-#  rabbitmq:
-#    host: 192.168.100.108
-#    port: 9936
-#    username: pbsage
-#    password: pbsage123
-#    #虚拟host 可以不设置,使用server默认host
-#    virtual-host: /adm
-
   rabbitmq:
-    host: 192.168.64.15
+    host: 192.168.100.108
     port: 9936
-    username: admin
-    password: brzj123456
+    username: pbsage
+    password: pbsage123
     #虚拟host 可以不设置,使用server默认host
-    virtual-host: /test
+    virtual-host: /adm
+
+#  rabbitmq:
+#    host: 192.168.64.15
+#    port: 9936
+#    username: admin
+#    password: brzj123456
+#    #虚拟host 可以不设置,使用server默认host
+#    virtual-host: /test
 
 
   servlet:

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

@@ -852,7 +852,7 @@ class RelToFromController {
             if (rEq2EqList.size>0) {
                 for (rEq2Eq in rEq2EqList) {
                     if (isDel) {
-                        val toJsonObj = Configure.toJsonObj(graphCode, type, rEq2Eq.id1!!, rEq2Eq.id1!!)
+                        val toJsonObj = Configure.toJsonObj(graphCode, type, rEq2Eq.id1!!, rEq2Eq.id2!!)
                         EquipApi.delRel(dictProject!!.groupCode!!, projectId,toJsonObj)
                     }
                     val toJsonObjArray =

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

@@ -5,9 +5,9 @@ spring:
 #    url:                                jdbc:postgresql://60.205.177.43:5432/datacenterlabsl
     #    username:                           postgres
     #    password:                           123qwe!@#
-#    url:                                jdbc:postgresql://192.168.64.14:5432/datacenterlabsl
+    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://39.102.40.239:5432/datacenter
     username:                           postgres
     #    password:                           persagy_2020qwe!@#
     password:                           cGVyc2FneV8yMDIwcXdlIUAj

+ 15 - 15
datasyn/src/main/resources/application-test.yml

@@ -12,29 +12,29 @@ eureka:
 
 spring:
   datasource:
-    url:                                jdbc:postgresql://192.168.64.15:5432/datacenter
-#    url:                                jdbc:postgresql://192.168.64.14:5432/datacenterlabsl
+#    url:                                jdbc:postgresql://192.168.64.15:5432/datacenter
+    url:                                jdbc:postgresql://192.168.64.14:5432/datacenterlabsl
     username:                           postgres
     password:                           cGVyc2FneV8yMDIwcXdlIUAj
 
 
 
     #配置rabbitMq 服务器
-#  rabbitmq:
-#    host: 192.168.100.108
-#    port: 9936
-#    username: pbsage
-#    password: pbsage123
-#    #虚拟host 可以不设置,使用server默认host
-#    virtual-host: /adm
-
   rabbitmq:
-    host: 192.168.64.15
+    host: 192.168.100.108
     port: 9936
-    username: admin
-    password: brzj123456
+    username: pbsage
+    password: pbsage123
     #虚拟host 可以不设置,使用server默认host
-    virtual-host: /test
+    virtual-host: /adm
+
+#  rabbitmq:
+#    host: 192.168.64.15
+#    port: 9936
+#    username: admin
+#    password: brzj123456
+#    #虚拟host 可以不设置,使用server默认host
+#    virtual-host: /test
 
 
 saga:
@@ -49,7 +49,7 @@ mqtopid:
 
 custom:
   #true 代表eureka  false  代表 http
-  eurekaorhttp:                       true
+  eurekaorhttp:                       false
 
 # 服务名
 servicename:

+ 1 - 1
equip-component/src/main/kotlin/com/persagy/server/models/ComponentProperty.kt

@@ -88,7 +88,7 @@ class ComponentProperty : BaseInfo(){
     /** 部件类型code */
     @Schema(description = "部件类型code")
     @Column(name = "class_code")
-    var category: String? = null
+    var classCode: String? = null
 
     /** 部件所在建筑id */
     @Schema(description = "部件所在建筑id")

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

@@ -20,9 +20,9 @@ spring:
 #    username:                           postgres
 #    password:                           123qwe!@#
 #    url:                                jdbc:postgresql://datacenter:5432/datacenter
-#    url:                                jdbc:postgresql://192.168.64.15: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
+#    url:                                jdbc:postgresql://datacenter:5432/datacenterlabsl
     username:                           postgres
 #    password:                           persagy_2020qwe!@#
     password:                           cGVyc2FneV8yMDIwcXdlIUAj

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

@@ -8,8 +8,8 @@ spring:
 #    password:                           123456
 #    url:                                jdbc:postgresql://39.102.40.239:5432/datacenter
 #    url:                                jdbc:postgresql://60.205.177.43:5432/datacenterlabsl
-#    url:                                jdbc:postgresql://192.168.64.15:5432/datacenter
-    url:                                jdbc:postgresql://192.168.64.14:5432/datacenterlabsl
+    url:                                jdbc:postgresql://192.168.64.15:5432/datacenter
+#    url:                                jdbc:postgresql://192.168.64.14:5432/datacenterlabsl
     username:                           postgres
     #    password:                           persagy_2020qwe!@#
     password:                           cGVyc2FneV8yMDIwcXdlIUAj

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

@@ -7,8 +7,8 @@ spring:
     #    username:                           postgres
     #    password:                           123qwe!@#
 #    url:                                jdbc:postgresql://172.17.100.16:5432/datacenter
-#    url:                                jdbc:postgresql://datacenter:5432/datacenter
-    url:                                jdbc:postgresql://datacenter:5432/datacenterlabsl
+    url:                                jdbc:postgresql://datacenter:5432/datacenter
+#    url:                                jdbc:postgresql://datacenter:5432/datacenterlabsl
     username:                           postgres
     #    password:                           persagy_2020qwe!@#
     password:                           cGVyc2FneV8yMDIwcXdlIUAj