Просмотр исходного кода

******************WX *********************
关系总览,添加关系同步

zhangweixin 4 лет назад
Родитель
Сommit
6486f6bda8

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

@@ -344,6 +344,14 @@ object DClassDefService : SObjectService<DefClass>(SMybatisDao(DefClass::class.j
                             defFuncId.sort = 1
                         }else if (defFuncId.code == "localName" ) {
                             defFuncId.sort = 2
+                        }else if (defFuncId.code == "bimId" ) {
+                            defFuncId.sort = 103
+                        }else if (defFuncId.code == "bimLocation" ) {
+                            defFuncId.sort = 104
+                        }else if (defFuncId.code == "bimFamilyName" ) {
+                            defFuncId.sort = 105
+                        }else if (defFuncId.code == "bimFamilySymbol" ) {
+                            defFuncId.sort = 106
                         }
                         val dicConfigureEditable = ParamTools.dicConfigureEditable()
                         val containsKey = dicConfigureEditable.containsKey(defFuncId.code!!)
@@ -716,6 +724,14 @@ object DClassDefService : SObjectService<DefClass>(SMybatisDao(DefClass::class.j
                                     defFuncId.sort = 1
                                 }else if (defFuncId.code == "localName" ) {
                                     defFuncId.sort = 2
+                                }else if (defFuncId.code == "bimId" ) {
+                                    defFuncId.sort = 103
+                                }else if (defFuncId.code == "bimLocation" ) {
+                                    defFuncId.sort = 104
+                                }else if (defFuncId.code == "bimFamilyName" ) {
+                                    defFuncId.sort = 105
+                                }else if (defFuncId.code == "bimFamilySymbol" ) {
+                                    defFuncId.sort = 106
                                 }
 
                                 val dicConfigureEditable = ParamTools.dicConfigureEditable()
@@ -1020,6 +1036,14 @@ object DClassDefService : SObjectService<DefClass>(SMybatisDao(DefClass::class.j
                                     defFuncId.sort = 1
                                 }else if (defFuncId.code == "localName" ) {
                                     defFuncId.sort = 2
+                                }else if (defFuncId.code == "bimId" ) {
+                                    defFuncId.sort = 103
+                                }else if (defFuncId.code == "bimLocation" ) {
+                                    defFuncId.sort = 104
+                                }else if (defFuncId.code == "bimFamilyName" ) {
+                                    defFuncId.sort = 105
+                                }else if (defFuncId.code == "bimFamilySymbol" ) {
+                                    defFuncId.sort = 106
                                 }
 
                                 val dicConfigureEditable = ParamTools.dicConfigureEditable()
@@ -1209,6 +1233,14 @@ object DClassDefService : SObjectService<DefClass>(SMybatisDao(DefClass::class.j
                     defFuncId.sort = 1
                 }else if (defFuncId.code == "localName" ) {
                     defFuncId.sort = 2
+                }else if (defFuncId.code == "bimId" ) {
+                    defFuncId.sort = 103
+                }else if (defFuncId.code == "bimLocation" ) {
+                    defFuncId.sort = 104
+                }else if (defFuncId.code == "bimFamilyName" ) {
+                    defFuncId.sort = 105
+                }else if (defFuncId.code == "bimFamilySymbol" ) {
+                    defFuncId.sort = 106
                 }
 
                 val dicConfigureEditable = ParamTools.dicConfigureEditable()
@@ -1432,6 +1464,14 @@ object DClassDefService : SObjectService<DefClass>(SMybatisDao(DefClass::class.j
                             defFuncId.sort = 1
                         }else if (defFuncId.code == "localName" ) {
                             defFuncId.sort = 2
+                        }else if (defFuncId.code == "bimId" ) {
+                            defFuncId.sort = 103
+                        }else if (defFuncId.code == "bimLocation" ) {
+                            defFuncId.sort = 104
+                        }else if (defFuncId.code == "bimFamilyName" ) {
+                            defFuncId.sort = 105
+                        }else if (defFuncId.code == "bimFamilySymbol" ) {
+                            defFuncId.sort = 106
                         }
 //                        val dicConfigureEditable = ParamTools.dicConfigureEditable()
 //                        val containsKey = dicConfigureEditable.containsKey(defFuncId.code!!)
@@ -1614,6 +1654,14 @@ object DClassDefService : SObjectService<DefClass>(SMybatisDao(DefClass::class.j
                             defFuncId.sort = 1
                         }else if (defFuncId.code == "localName" ) {
                             defFuncId.sort = 2
+                        }else if (defFuncId.code == "bimId" ) {
+                            defFuncId.sort = 103
+                        }else if (defFuncId.code == "bimLocation" ) {
+                            defFuncId.sort = 104
+                        }else if (defFuncId.code == "bimFamilyName" ) {
+                            defFuncId.sort = 105
+                        }else if (defFuncId.code == "bimFamilySymbol" ) {
+                            defFuncId.sort = 106
                         }
 
 //                        val dicConfigureEditable = ParamTools.dicConfigureEditable()

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