Prechádzať zdrojové kódy

********************WX******************
getEquipByBimId

zhangweixin 4 rokov pred
rodič
commit
283531e143
17 zmenil súbory, kde vykonal 265 pridanie a 69 odobranie
  1. 6 1
      data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/dictnew/DefFuncId.kt
  2. 1 1
      data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/graphtype/rel/RelGeneralSystemBuilding.kt
  3. 0 24
      data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/graphtype/rel/RelGeneralSystemFloor.kt
  4. 17 0
      datacenter/src/main/kotlin/com/persagy/server/Opt.kt
  5. 3 3
      datacenter/src/main/kotlin/com/persagy/server/services/graphtype/RelationTypeProjectService.kt
  6. 1 0
      datacenter/src/main/kotlin/com/persagy/server/services/objects/EquipmentProSyService.kt
  7. 2 2
      datacenter/src/main/resources/application-test.yml
  8. 89 14
      datasyn/src/main/kotlin/com/persagy/server/syn/controllers/obj/ObjectToFromController.kt
  9. 1 0
      datasyn/src/main/kotlin/com/persagy/server/syn/models/tools/SpaceUtil.kt
  10. 80 10
      datasyn/src/main/kotlin/com/persagy/server/syn/services/dict/DClassDefService.kt
  11. 1 1
      datasyn/src/main/kotlin/com/persagy/server/syn/task/SchedulerTask.kt
  12. 1 1
      datasyn/src/main/kotlin/com/persagy/server/syn/task/SchedulerTaskRel.kt
  13. 2 2
      datasyn/src/main/resources/application-dev.yml
  14. 8 8
      datasyn/src/main/resources/application-test.yml
  15. 50 0
      datasyn/src/main/resources/application-test2.yml
  16. 1 0
      scanbuilding/src/main/kotlin/com/persagy/server/services/task/EquipScanTaskService.kt
  17. 2 2
      scanbuilding/src/main/resources/application-test.yml

+ 6 - 1
data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/dictnew/DefFuncId.kt

@@ -223,7 +223,8 @@ open class DefFuncId: Serializable {
     @Schema(description = "路径")
     var path: String? = null
         get() {
-            return if ( code == "roomLocalFuncTypeID"||code == "roomLocalFuncTypeName"||code == "rFID"){
+            return if ( code == "roomLocalFuncTypeID"||code == "roomLocalFuncTypeName"||code == "rFID"||
+                code == "partAutoFireExtinguishArea"||code == "autoFireExtinguishSystem"||code == "maxPermitArea"){
                 "infos.$code"
             } else if (firstName == "基本信息"|| firstName.isNullOrEmpty()||firstName == "基本参数"){
                 code
@@ -236,4 +237,8 @@ open class DefFuncId: Serializable {
     @Schema(description = "字典内容")
     var content: ArrayList<DefFuncId>? = null
 
+
+
+
+
 }

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

@@ -146,7 +146,7 @@ open class RelGeneralSystemBuilding : BaseInfo() {
 
     /** 级联-系统服务于建筑 */
     @Schema(description = "级联-系统服务于建筑")
-    @SCascade(table="r_sy_for_bd", idColumn="sys_id", childIdColumn="buildingId")
+    @SCascade(table="r_sy_for_bd", idColumn="sys_id", childIdColumn="building_id")
     var objectInfo: ArrayList<RelBuilding>? = null
 
 }

+ 0 - 24
data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/graphtype/rel/RelGeneralSystemFloor.kt

@@ -93,30 +93,6 @@ open class RelGeneralSystemFloor : BaseInfo() {
     @Column(name = "floor_id")
     var floorId: String? = null
 
-    /** 设定参数 */
-    @Schema(description = "设定参数")
-    @Column(name = "setting_param")
-    var settingParam: HashMap<String,Any?>? = null
-
-    /** 技术参数 */
-    @Schema(description = "技术参数")
-    @Column(name = "tech_param")
-    var techParam: HashMap<String,Any?>? = null
-
-    /** 运行参数 */
-    @Schema(description = "运行参数")
-    @Column(name = "run_param")
-    var runParam: HashMap<String,Any?>? = null
-
-    /** 自定义 */
-    @Schema(description = "自定义")
-    @Column(name = "custom_param")
-    var customParam: HashMap<String, Any?>? = null
-
-    /** 运行状态 */
-    @Schema(description = "运行状态")
-    @Column(name = "running_state")
-    var runningState: HashMap<String, Any?>? = null
 
     /** 对象类型 */
     @Schema(description = "对象类型")

+ 17 - 0
datacenter/src/main/kotlin/com/persagy/server/Opt.kt

@@ -170,4 +170,21 @@ object Opt {
     const val Eq2Sh = "Eq2Sh"
     /** 设备和空间 */
     const val Eq2Sp = "Eq2Sp"
+
+
+
+    /** 信息点是否为基本信息点 */
+    fun doesItExist(code: String) : Boolean{
+
+        when(code){
+            "id" -> return true
+            "name" -> return true
+            "localId" -> return true
+            "localName" -> return true
+        }
+
+
+
+    return false
+    }
 }

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

@@ -736,7 +736,7 @@ object RelationTypeProjectService : RService<RelationTypeProject>(SMybatisDao(Re
                         }else if (equipmentList.size>1) {
                             row.createCell(4).setCellValue("本地编码重复")
                         }else {
-                            val entity = dictDefFuncId.select(SFilter.eq("classCode", equipmentList[0].classCode!!), SFilter.eq("code", id1)).entity()
+                            val entity = dictDefFuncId.select(SFilter.eq("classCode", equipmentList[0].classCode!!), SFilter.or(SFilter.eq("code", id1),SFilter.eq("origCode", id1))).entity()
                             if (entity == null ) {
                                 row.createCell(4).setCellValue("信息点不存在")
                             }else {
@@ -770,7 +770,7 @@ object RelationTypeProjectService : RService<RelationTypeProject>(SMybatisDao(Re
     } // Fun readExcelRelation()
 
     fun equipUpdate(equipment: Equipment,id1: String,id2: String,id3: String):Equipment {
-        val entity = dictDefFuncId.select(SFilter.eq("classCode", equipment.classCode!!), SFilter.eq("code", id1)).entity()
+        val entity = dictDefFuncId.select(SFilter.eq("classCode", equipment.classCode!!), SFilter.or(SFilter.eq("code", id1),SFilter.eq("origCode", id1))).entity()
         logger.debug("信息点1=${equipment.classCode}")
         logger.debug("信息点=${entity?.toJson()}")
         if (entity!=null) {
@@ -778,7 +778,7 @@ object RelationTypeProjectService : RService<RelationTypeProject>(SMybatisDao(Re
             if (equipment.infos.isNullOrEmpty()) {
                 equipment.infos = HashMap()
             }
-            equipment.infos!![id1] = "$id2-$id3"
+            equipment.infos!![entity.code!!] = "$id2-$id3"
         }
         return equipment
     }

+ 1 - 0
datacenter/src/main/kotlin/com/persagy/server/services/objects/EquipmentProSyService.kt

@@ -134,6 +134,7 @@ object EquipmentProSyService : Service<EquipmentProSy>(SMybatisDao(EquipmentProS
                 if (!entity.systemList.isNullOrEmpty()){
                     for (syId in entity.systemList!!){
                         val rSyEq = RSyEq()
+                        rSyEq.projectId = Opt.projectId
                         rSyEq.equipId = entity.id
                         rSyEq.sysId = syId
                         RSyEqService.create(rSyEq)

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

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

+ 89 - 14
datasyn/src/main/kotlin/com/persagy/server/syn/controllers/obj/ObjectToFromController.kt

@@ -33,6 +33,8 @@ import com.persagy.database.SFilter
 import com.persagy.mybatis.SMybatisDao
 import com.persagy.server.datacenter.models.entities.dictnew.DictProject
 import com.persagy.server.datacenter.models.entities.objects.*
+import com.persagy.server.datacenter.models.entities.rel.RSpinBd
+import com.persagy.server.datacenter.models.entities.rel.RSpinFl
 import com.persagy.server.syn.Configure
 import com.persagy.server.syn.models.api.obj.BuildingApi
 import com.persagy.server.syn.models.api.obj.EquipApi
@@ -85,6 +87,10 @@ class ObjectToFromController {
     private val spaceOutlineService = SObjectService(SMybatisDao(SpaceOutline::class.java))
     /** 字典项目服务 */
     private val dictProjectService = SBaseService(SMybatisDao(DictProject::class.java))
+    /** 空间和建筑的关系 */
+    private val rSpinBdService = SObjectService(SMybatisDao(RSpinBd::class.java))
+    /** 空间和楼层的关系 */
+    private val rSpinFlService = SObjectService(SMybatisDao(RSpinFl::class.java))
 
 
     /**
@@ -317,21 +323,90 @@ class ObjectToFromController {
 //                    if (spaceOutline!=null){
 //                        space.outline = spaceOutline.outline
 //                    }
-                    val createObj =
-                        EquipApi.createObj(dictProject!!.groupCode!!, projectId,SpaceUtil.spaceTools(projectId, space))
-                    if (createObj!!.result != "success") {
-                        val updateObj =
-                            EquipApi.updateObj(dictProject!!.groupCode!!, projectId,SpaceUtil.spaceTools(projectId, space))
-                        if (updateObj!=null&&updateObj.result == "success") {
-                            logger.debug("空间更成功:${space.id}")
-                        }
-                    }else {
-                        logger.debug("空间创建成功:${space.toJson()}")
-                        val updateObj =
-                            EquipApi.updateObj(dictProject!!.groupCode!!, projectId,SpaceUtil.spaceTools(projectId, space))
-                        if (updateObj!=null&&updateObj.result == "success") {
-                            logger.debug("空间更成功:${space.id}")
+                    try {
+                        val createObj =
+                            EquipApi.createObj(dictProject!!.groupCode!!, projectId,SpaceUtil.spaceTools(projectId, space))
+                        if (createObj!!.result != "success") {
+                            val updateObj =
+                                EquipApi.updateObj(dictProject!!.groupCode!!, projectId,SpaceUtil.spaceTools(projectId, space))
+                            if (updateObj!=null&&updateObj.result == "success") {
+                                logger.debug("空间更成功:${space.id}")
+                            }
+                            val rSpinBdList = rSpinBdService.select(
+                                SFilter.eq("projectId", projectId),
+                                SFilter.eq("spaceId", space.id!!)
+                            ).exec()
+                            val rSpinFlList = rSpinFlService.select(
+                                SFilter.eq("projectId", projectId),
+                                SFilter.eq("spaceId", space.id!!)
+                            ).exec()
+                            val listRel = ArrayList<JSONObject>()
+                            val jsonArray = JSONArray()
+                            /** 业务空间的建筑 */
+                            if (rSpinBdList.size>0){
+                                for (rSpinBd in rSpinBdList) {
+                                    val toJsonObj =
+                                        toJsonObjArray("ArchSubset", "Bd2Sp",rSpinBd.buildingId!!, space.id!!)
+                                    jsonArray.add(toJsonObj)
+                                }
+                            }
+                            /** 业务空间的楼层 */
+                            if (rSpinFlList.size>0){
+                                for (rSpinFl in rSpinFlList){
+                                    val toJsonObj =
+                                        toJsonObjArray("ArchSubset", "Fl2Sp", rSpinFl.floorId!!, space.id!!)
+                                    jsonArray.add(toJsonObj)
+                                }
+                            }
+                            if (jsonArray.size>0) {
+                                val createRel = EquipApi.createRel(dictProject.groupCode!!, projectId, jsonArray)
+                                if (!createRel){
+
+                                }
+                            }
+                        }else {
+                            logger.debug("空间创建成功:${space.toJson()}")
+                            val updateObj =
+                                EquipApi.updateObj(dictProject!!.groupCode!!, projectId,SpaceUtil.spaceTools(projectId, space))
+                            if (updateObj!=null&&updateObj.result == "success") {
+                                logger.debug("空间更成功:${space.id}")
+                            }
+
+                            val rSpinBdList = rSpinBdService.select(
+                                SFilter.eq("projectId", projectId),
+                                SFilter.eq("spaceId", space.id!!)
+                            ).exec()
+                            val rSpinFlList = rSpinFlService.select(
+                                SFilter.eq("projectId", projectId),
+                                SFilter.eq("spaceId", space.id!!)
+                            ).exec()
+                            val listRel = ArrayList<JSONObject>()
+                            val jsonArray = JSONArray()
+                            /** 业务空间的建筑 */
+                            if (rSpinBdList.size>0){
+                                for (rSpinBd in rSpinBdList) {
+                                    val toJsonObj =
+                                        toJsonObjArray("ArchSubset", "Bd2Sp",rSpinBd.buildingId!!, space.id!!)
+                                    jsonArray.add(toJsonObj)
+                                }
+                            }
+                            /** 业务空间的楼层 */
+                            if (rSpinFlList.size>0){
+                                for (rSpinFl in rSpinFlList){
+                                    val toJsonObj =
+                                        toJsonObjArray("ArchSubset", "Fl2Sp", rSpinFl.floorId!!, space.id!!)
+                                    jsonArray.add(toJsonObj)
+                                }
+                            }
+                            if (jsonArray.size>0) {
+                                val createRel = EquipApi.createRel(dictProject.groupCode!!, projectId, jsonArray)
+                                if (!createRel){
+
+                                }
+                            }
                         }
+                    } catch (e: Exception) {
+                        e.printStackTrace()
                     }
                 }
             }

+ 1 - 0
datasyn/src/main/kotlin/com/persagy/server/syn/models/tools/SpaceUtil.kt

@@ -565,6 +565,7 @@ object SpaceUtil {
         hashMap["projectId"] = projectId
         hashMap["objType"] = "space"
         hashMap["classCode"] = zoneSpace.classCode
+        hashMap["tenantType"] = zoneSpace.tenantType
         if (!zoneSpace.localName.isNullOrEmpty()){
             hashMap["localName"] = zoneSpace.localName
         }else {

+ 80 - 10
datasyn/src/main/kotlin/com/persagy/server/syn/services/dict/DClassDefService.kt

@@ -197,7 +197,7 @@ object DClassDefService : SObjectService<DefClass>(SMybatisDao(DefClass::class.j
 //            defFuncIdService.delete(SFilter.eq("groupId", "0"))
             for (defClass in defClassList){
                 val dictPlatformInfoList = DictTypeApi.dictPlatformInfo(defClass.code!!, defClass.type!!)
-                defFuncIdService.delete(SFilter.eq("classCode", defClass.code!!),SFilter.eq("groupCode", "0"))
+//                defFuncIdService.delete(SFilter.eq("classCode", defClass.code!!),SFilter.eq("groupCode", "0"))
                 if (!dictPlatformInfoList.isNullOrEmpty()){
                     for (dictPlatformInfo in dictPlatformInfoList){
                         /** 开头字母大写转小写 */
@@ -308,6 +308,8 @@ object DClassDefService : SObjectService<DefClass>(SMybatisDao(DefClass::class.j
                         defFuncId.aliasCode = dictPlatformInfo.aliasCode
                         defFuncId.aliasName = dictPlatformInfo.aliasName
                         if (!defFuncId.name.isNullOrEmpty()){
+
+
                             /** 排序 */
                             if (defFuncId.name!! == "设备本地编码"||defFuncId.name!! == "楼层本地编码"){
                                 defFuncId.sort = 1
@@ -334,6 +336,15 @@ object DClassDefService : SObjectService<DefClass>(SMybatisDao(DefClass::class.j
                             }
                         }
 
+                        if (defFuncId.code == "id") {
+                            defFuncId.sort = 101
+                        }else if (defFuncId.code == "name" ) {
+                            defFuncId.sort = 102
+                        }else if (defFuncId.code == "localId" ) {
+                            defFuncId.sort = 1
+                        }else if (defFuncId.code == "localName" ) {
+                            defFuncId.sort = 2
+                        }
                         val dicConfigureEditable = ParamTools.dicConfigureEditable()
                         val containsKey = dicConfigureEditable.containsKey(defFuncId.code!!)
                         if (containsKey){
@@ -556,7 +567,7 @@ object DClassDefService : SObjectService<DefClass>(SMybatisDao(DefClass::class.j
                 for (group in groupList){
                     for (defClass in defClassList){
                         val dictGroupInfoList = DictTypeApi.dictGroupInfo(group.code!!, defClass.code!!)
-                        defFuncIdService.delete(SFilter.eq("groupCode",group.code!!),SFilter.eq("classCode",defClass.code!!),SFilter.eq("projectId","0"))
+//                        defFuncIdService.delete(SFilter.eq("groupCode",group.code!!),SFilter.eq("classCode",defClass.code!!),SFilter.eq("projectId","0"))
                         if (dictGroupInfoList.size>0){
                             for (dictGroupInfo in dictGroupInfoList){
                                 /** 开头字母大写转小写 */
@@ -668,6 +679,8 @@ object DClassDefService : SObjectService<DefClass>(SMybatisDao(DefClass::class.j
                                 defFuncId.aliasCode = dictGroupInfo.aliasCode
                                 defFuncId.aliasName = dictGroupInfo.aliasName
 
+
+
                                 if (!defFuncId.name.isNullOrEmpty()){
                                     /** 排序 */
                                     if (defFuncId.name!! == "设备本地编码"||defFuncId.name!! == "楼层本地编码"||defFuncId.name!! == "本地编码"){
@@ -695,6 +708,16 @@ object DClassDefService : SObjectService<DefClass>(SMybatisDao(DefClass::class.j
                                     }
                                 }
 
+                                if (defFuncId.code == "id") {
+                                    defFuncId.sort = 101
+                                }else if (defFuncId.code == "name" ) {
+                                    defFuncId.sort = 102
+                                }else if (defFuncId.code == "localId" ) {
+                                    defFuncId.sort = 1
+                                }else if (defFuncId.code == "localName" ) {
+                                    defFuncId.sort = 2
+                                }
+
                                 val dicConfigureEditable = ParamTools.dicConfigureEditable()
                                 val containsKey = dicConfigureEditable.containsKey(defFuncId.code!!)
                                 if (containsKey){
@@ -848,7 +871,7 @@ object DClassDefService : SObjectService<DefClass>(SMybatisDao(DefClass::class.j
                         val dictGroupInfoList = DictTypeApi.dictProjectInfo(dictProject.groupCode!!, defClass.code!!,projectId)
 
                         if (dictGroupInfoList.size>0){
-                            defFuncIdService.delete(SFilter.eq("projectId",projectId!!),SFilter.eq("classCode",defClass.code!!))
+//                            defFuncIdService.delete(SFilter.eq("projectId",projectId!!),SFilter.eq("classCode",defClass.code!!))
                             for (dictGroupInfo in dictGroupInfoList){
                                 /** 开头字母大写转小写 */
                                 val str1: String = dictGroupInfo.code!!.substring(0, 1).toLowerCase() //直接bai将du字符zhi串第一个不管是数字还是字母都小写
@@ -960,6 +983,8 @@ object DClassDefService : SObjectService<DefClass>(SMybatisDao(DefClass::class.j
                                 defFuncId.aliasCode = dictGroupInfo.aliasCode
                                 defFuncId.aliasName = dictGroupInfo.aliasName
 
+
+
                                 if (!defFuncId.name.isNullOrEmpty()){
                                     /** 排序 */
                                     if (defFuncId.name!! == "设备本地编码"||defFuncId.name!! == "楼层本地编码"||defFuncId.name!! == "本地编码"){
@@ -987,12 +1012,22 @@ object DClassDefService : SObjectService<DefClass>(SMybatisDao(DefClass::class.j
                                     }
                                 }
 
+                                if (defFuncId.code == "id") {
+                                    defFuncId.sort = 101
+                                }else if (defFuncId.code == "name" ) {
+                                    defFuncId.sort = 102
+                                }else if (defFuncId.code == "localId" ) {
+                                    defFuncId.sort = 1
+                                }else if (defFuncId.code == "localName" ) {
+                                    defFuncId.sort = 2
+                                }
+
                                 val dicConfigureEditable = ParamTools.dicConfigureEditable()
                                 val containsKey = dicConfigureEditable.containsKey(defFuncId.code!!)
                                 if (containsKey){
                                     defFuncId.editable = false
                                     defFuncId.unDisabled = false
-                                    defFuncId.visible = false
+//                                    defFuncId.visible = false
                                 }
 
                                 val dicConfigure = ParamTools.dicConfigure()
@@ -1001,10 +1036,9 @@ object DClassDefService : SObjectService<DefClass>(SMybatisDao(DefClass::class.j
                                     if (containsKey){
                                         defFuncId.editable = true
                                         defFuncId.unDisabled = false
-                                        defFuncId.visible = true
+//                                        defFuncId.visible = true
                                     }
                                 }
-
                                 defFuncIdService.replace(defFuncId)
                             }
                         }
@@ -1139,6 +1173,8 @@ object DClassDefService : SObjectService<DefClass>(SMybatisDao(DefClass::class.j
                 defFuncId.aliasCode = dictGroupInfo.aliasCode
                 defFuncId.aliasName = dictGroupInfo.aliasName
 
+
+
                 if (!defFuncId.name.isNullOrEmpty()){
                     /** 排序 */
                     if (defFuncId.name!! == "设备本地编码"||defFuncId.name!! == "楼层本地编码"||defFuncId.name!! == "本地编码"){
@@ -1165,6 +1201,15 @@ object DClassDefService : SObjectService<DefClass>(SMybatisDao(DefClass::class.j
                         defFuncId.sort = 60
                     }
                 }
+                if (defFuncId.code == "id") {
+                    defFuncId.sort = 101
+                }else if (defFuncId.code == "name" ) {
+                    defFuncId.sort = 102
+                }else if (defFuncId.code == "localId" ) {
+                    defFuncId.sort = 1
+                }else if (defFuncId.code == "localName" ) {
+                    defFuncId.sort = 2
+                }
 
                 val dicConfigureEditable = ParamTools.dicConfigureEditable()
                 val containsKey = dicConfigureEditable.containsKey(defFuncId.code!!)
@@ -1348,19 +1393,22 @@ object DClassDefService : SObjectService<DefClass>(SMybatisDao(DefClass::class.j
                         defFuncId.origDataType = dictPlatformInfo.origDataType
                         defFuncId.aliasCode = dictPlatformInfo.aliasCode
                         defFuncId.aliasName = dictPlatformInfo.aliasName
+
+
+
                         if (!defFuncId.name.isNullOrEmpty()){
                             /** 排序 */
-                            if (defFuncId.name!! == "设备本地编码"||defFuncId.name!! == "楼层本地编码"){
+                            if (defFuncId.name!! == "设备本地编码"||defFuncId.name!! == "楼层本地编码"||defFuncId.name!! == "系统本地编码"){
                                 defFuncId.sort = 1
-                            }else if (defFuncId.name!! == "设备本地名称"|| defFuncId.name!! == "楼层本地名称"){
+                            }else if (defFuncId.name!! == "设备本地名称"|| defFuncId.name!! == "楼层本地名称"||defFuncId.name!! == "系统本地名称"){
                                 defFuncId.sort = 2
                             }else if (defFuncId.name!! == "设备二维码图片"){
                                 defFuncId.sort = 3
                             }else if (defFuncId.name!! == "设计图纸中编码"){
                                 defFuncId.sort = 4
-                            }else if (defFuncId.name!! == "设备ID"){
+                            }else if (defFuncId.name!! == "设备ID"||defFuncId.name!! == "系统ID"){
                                 defFuncId.sort = 101
-                            }else if (defFuncId.name!! == "设备名称"){
+                            }else if (defFuncId.name!! == "设备名称"||defFuncId.name!! == "系统名称"){
                                 defFuncId.sort = 102
                             }else if (defFuncId.name!! == "BIM模型中编码"){
                                 defFuncId.sort = 103
@@ -1375,6 +1423,16 @@ object DClassDefService : SObjectService<DefClass>(SMybatisDao(DefClass::class.j
                             }
                         }
 
+
+                        if (defFuncId.code == "id") {
+                            defFuncId.sort = 101
+                        }else if (defFuncId.code == "name" ) {
+                            defFuncId.sort = 102
+                        }else if (defFuncId.code == "localId" ) {
+                            defFuncId.sort = 1
+                        }else if (defFuncId.code == "localName" ) {
+                            defFuncId.sort = 2
+                        }
 //                        val dicConfigureEditable = ParamTools.dicConfigureEditable()
 //                        val containsKey = dicConfigureEditable.containsKey(defFuncId.code!!)
 //                        if (containsKey){
@@ -1519,6 +1577,8 @@ object DClassDefService : SObjectService<DefClass>(SMybatisDao(DefClass::class.j
                         defFuncId.origDataType = dictPlatformInfo.origDataType
                         defFuncId.aliasCode = dictPlatformInfo.aliasCode
                         defFuncId.aliasName = dictPlatformInfo.aliasName
+
+
                         if (!defFuncId.name.isNullOrEmpty()){
                             /** 排序 */
                             if (defFuncId.name!! == "设备本地编码"||defFuncId.name!! == "楼层本地编码"){
@@ -1546,6 +1606,16 @@ object DClassDefService : SObjectService<DefClass>(SMybatisDao(DefClass::class.j
                             }
                         }
 
+                        if (defFuncId.code == "id") {
+                            defFuncId.sort = 101
+                        }else if (defFuncId.code == "name" ) {
+                            defFuncId.sort = 102
+                        }else if (defFuncId.code == "localId" ) {
+                            defFuncId.sort = 1
+                        }else if (defFuncId.code == "localName" ) {
+                            defFuncId.sort = 2
+                        }
+
 //                        val dicConfigureEditable = ParamTools.dicConfigureEditable()
 //                        val containsKey = dicConfigureEditable.containsKey(defFuncId.code!!)
 //                        if (containsKey){

+ 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

@@ -5,8 +5,8 @@ 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.15:5432/datacenter
+#    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
     username:                           postgres
     #    password:                           persagy_2020qwe!@#

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

@@ -21,26 +21,26 @@ spring:
 
     #配置rabbitMq 服务器
   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
 
 saga:
   dataPlatform:                        http://192.168.64.17:8832
 #  dataPlatform:                        http://39.102.40.239:9970
-  data_org:                            http://192.168.64.17:8831
-  data_rwd:                            http://192.168.64.17:8832
-  data_dic:                            http://192.168.64.17:8830
+  data_org:                            http://common/dmp-org
+  data_rwd:                            http://common/dmp-rwd
+  data_dic:                            http://common/dmp-dic
 mqtopid:
   exchange:                           exchange-dmp
   routingKey:
 
 custom:
   #true 代表eureka  false  代表 http
-  eurekaorhttp:                       true
+  eurekaorhttp:                       false
 
 # 服务名
 servicename:

+ 50 - 0
datasyn/src/main/resources/application-test2.yml

@@ -0,0 +1,50 @@
+server:
+  port: 8089
+
+eureka:
+  client:                                   #客户端注册进eureka服务列表内
+    service-url:
+      #      defaultZone:                          http://192.168.64.18:9931/eureka
+      defaultZone:                          http://frame:123456@192.168.64.18:9931/eureka
+      #      defaultZone:                          http://admin:1qaz2wsx@127.0.0.1:8888/eureka/ #增加密码
+      enable-self-preservation: false # 设为false,关闭自我保护
+      eviction-interval-timer-in-ms: 5000 # 清理间隔(单位毫秒,默认是60*1000)启用主动失效,
+
+spring:
+  datasource:
+    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.64.15
+    port: 9936
+    username: admin
+    password: brzj123456
+    #虚拟host 可以不设置,使用server默认host
+    virtual-host: /test
+
+saga:
+  dataPlatform:                        http://192.168.64.17:8832
+#  dataPlatform:                        http://39.102.40.239:9970
+  data_org:                            http://192.168.64.17:8831
+  data_rwd:                            http://192.168.64.17:8832
+  data_dic:                            http://192.168.64.17:8830
+mqtopid:
+  exchange:                           exchange-dmp
+  routingKey:
+
+custom:
+  #true 代表eureka  false  代表 http
+  eurekaorhttp:                       true
+
+# 服务名
+servicename:
+
+  DMPORG:                             DMP-ORG   #物理3世界
+  DMPRWD:                             DMP-RWD   #中台
+  DMPDIC:                             DMP-DIC   #字典

+ 1 - 0
scanbuilding/src/main/kotlin/com/persagy/server/services/task/EquipScanTaskService.kt

@@ -177,6 +177,7 @@ object EquipScanTaskService : RService<EquipScanTask>(SMybatisDao(EquipScanTask:
 
 
                 }else {
+                    equipScanTask.bimLocation = equipment.bimLocation
                     if (equipScanTask.equipName.isNullOrEmpty()) {
                         equipScanTask.equipName = equipment!!.name
                     }

+ 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