929386168@qq.com 3 жил өмнө
parent
commit
34ce62f9fa

+ 2 - 2
boman-report/src/main/java/com/boman/report/service/impl/TableServiceImpl.java

@@ -38,8 +38,8 @@ public class TableServiceImpl implements ITableService {
     @Override
     public List<GenTable> selectList(GenTable genTable) {
         List<GenTable> tables = mapper.selectList(genTable.getTableName(), genTable.getTableComment());
-        Set<String> set = ignoreTable.getSet();
-        tables.removeIf(next -> set.contains(next.getTableName()) || next.getTableName().startsWith("sys"));
+        final Set<String> set = ignoreTable.getSet();
+        tables.removeIf(next -> set.contains(next.getTableName()));
         return tables;
     }
 }

+ 35 - 35
boman-ureport2/src/main/java/com/boman/ureport2/BomanUReport2Application.java

@@ -1,35 +1,35 @@
-package com.boman.ureport2;
-
-import com.boman.common.security.annotation.EnableCustomConfig;
-import com.boman.common.security.annotation.EnableRyFeignClients;
-import com.boman.common.swagger.annotation.EnableCustomSwagger2;
-import org.springframework.boot.SpringApplication;
-import org.springframework.cloud.client.SpringCloudApplication;
-import org.springframework.context.annotation.ComponentScan;
-
-/**
- * web-core
- *
- * @author shiqian
- */
-@EnableCustomConfig
-@EnableCustomSwagger2
-@EnableRyFeignClients
-@SpringCloudApplication
-@ComponentScan(value = {"com.boman", "com.bstek"})
-public class BomanUReport2Application {
-
-    public static void main(String[] args) {
-        SpringApplication.run(BomanUReport2Application.class, args);
-        System.out.println();
-        System.out.println();
-        System.out.println("---------------------------------------------- boman-ureport2 模块启动成功----------------------------------------------");
-        System.out.println("---------------------------------------------- boman-ureport2 模块启动成功----------------------------------------------");
-        System.out.println("---------------------------------------------- boman-ureport2 模块启动成功----------------------------------------------");
-        System.out.println("---------------------------------------------- boman-ureport2 模块启动成功----------------------------------------------");
-        System.out.println("---------------------------------------------- boman-ureport2 模块启动成功----------------------------------------------");
-        System.out.println("---------------------------------------------- boman-ureport2 模块启动成功----------------------------------------------");
-        System.out.println();
-        System.out.println();
-    }
-}
+//package com.boman.ureport2;
+//
+//import com.boman.common.security.annotation.EnableCustomConfig;
+//import com.boman.common.security.annotation.EnableRyFeignClients;
+//import com.boman.common.swagger.annotation.EnableCustomSwagger2;
+//import org.springframework.boot.SpringApplication;
+//import org.springframework.cloud.client.SpringCloudApplication;
+//import org.springframework.context.annotation.ComponentScan;
+//
+///**
+// * web-core
+// *
+// * @author shiqian
+// */
+//@EnableCustomConfig
+//@EnableCustomSwagger2
+//@EnableRyFeignClients
+//@SpringCloudApplication
+//@ComponentScan(value = {"com.boman", "com.bstek"})
+//public class BomanUReport2Application {
+//
+//    public static void main(String[] args) {
+//        SpringApplication.run(BomanUReport2Application.class, args);
+//        System.out.println();
+//        System.out.println();
+//        System.out.println("---------------------------------------------- boman-ureport2 模块启动成功----------------------------------------------");
+//        System.out.println("---------------------------------------------- boman-ureport2 模块启动成功----------------------------------------------");
+//        System.out.println("---------------------------------------------- boman-ureport2 模块启动成功----------------------------------------------");
+//        System.out.println("---------------------------------------------- boman-ureport2 模块启动成功----------------------------------------------");
+//        System.out.println("---------------------------------------------- boman-ureport2 模块启动成功----------------------------------------------");
+//        System.out.println("---------------------------------------------- boman-ureport2 模块启动成功----------------------------------------------");
+//        System.out.println();
+//        System.out.println();
+//    }
+//}