浏览代码

code style and 3.3.3.6-SNAPSHOT

miemie 4 年之前
父节点
当前提交
1c991beee5

+ 1 - 1
build.gradle

@@ -86,7 +86,7 @@ ext {
 
 
 allprojects {
 allprojects {
     group = 'com.baomidou'
     group = 'com.baomidou'
-    version = "3.3.3.5-SNAPSHOT"
+    version = "3.3.3.6-SNAPSHOT"
 }
 }
 
 
 description = "Mybatis 增强工具包 - 只做增强不做改变,简化CRUD操作"
 description = "Mybatis 增强工具包 - 只做增强不做改变,简化CRUD操作"

+ 1 - 1
mybatis-plus-extension/src/main/java/com/baomidou/mybatisplus/extension/plugins/inner/TenantLineInnerInterceptor.java

@@ -249,7 +249,7 @@ public class TenantLineInnerInterceptor extends JsqlParserSupport implements Inn
     protected void processJoin(Join join) {
     protected void processJoin(Join join) {
         if (join.getRightItem() instanceof Table) {
         if (join.getRightItem() instanceof Table) {
             Table fromTable = (Table) join.getRightItem();
             Table fromTable = (Table) join.getRightItem();
-            if (this.tenantLineHandler.ignoreTable(fromTable.getName())) {
+            if (tenantLineHandler.ignoreTable(fromTable.getName())) {
                 // 过滤退出执行
                 // 过滤退出执行
                 return;
                 return;
             }
             }