Skip to content

Commit e8c84ed

Browse files
committed
代码调整.
1 parent 7ffc2e5 commit e8c84ed

File tree

3 files changed

+2
-8
lines changed

3 files changed

+2
-8
lines changed

mybatis-plus-core/src/main/java/com/baomidou/mybatisplus/core/override/MybatisMapperProxy.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ public Object invoke(Object proxy, Method method, Object[] args, SqlSession sqlS
175175
Class<?> mapperInterface = mybatisMapperProxy.getMapperInterface();
176176
IgnoreStrategy ignoreStrategy = InterceptorIgnoreHelper.findIgnoreStrategy(mapperInterface, method);
177177
if (ignoreStrategy == null) {
178-
ignoreStrategy = IgnoreStrategy.DEFAULT;
178+
ignoreStrategy = IgnoreStrategy.builder().build();
179179
}
180180
InterceptorIgnoreHelper.handle(ignoreStrategy);
181181
return methodHandle.bindTo(proxy).invokeWithArguments(args);

mybatis-plus-core/src/main/java/com/baomidou/mybatisplus/core/plugins/IgnoreStrategy.java

-6
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,6 @@
2525
@Setter
2626
@Builder
2727
public class IgnoreStrategy {
28-
29-
/**
30-
* @since 3.5.10
31-
*/
32-
public static final IgnoreStrategy DEFAULT = IgnoreStrategy.builder().build();
33-
3428
private Boolean tenantLine;
3529
private Boolean dynamicTableName;
3630
private Boolean blockAttack;

mybatis-plus-generator/src/main/java/com/baomidou/mybatisplus/generator/config/builder/Entity.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public class Entity implements ITemplate {
7777
private String javaTemplate = ConstVal.TEMPLATE_ENTITY_JAVA;
7878

7979
/**
80-
* Kotlin模板默认撸
80+
* Kotlin模板默认路径
8181
*/
8282
@Getter
8383
private String kotlinTemplate = ConstVal.TEMPLATE_ENTITY_KT;

0 commit comments

Comments
 (0)