逻辑删除调整

This commit is contained in:
yulichang 2023-12-11 04:06:13 +08:00
parent 9ce2b519b1
commit 2b42b33f41
3 changed files with 3 additions and 3 deletions

View File

@ -43,7 +43,7 @@ public class MybatisPlusJoinProperties {
/** /**
* 逻辑删除类型 支持 where on * 逻辑删除类型 支持 where on
*/ */
private String logicDelType = "where"; private String logicDelType = "on";
/** /**
* 映射查询最大深度 * 映射查询最大深度

View File

@ -40,7 +40,7 @@
}, },
{ {
"name": "mybatis-plus-join.logic-del-type", "name": "mybatis-plus-join.logic-del-type",
"defaultValue": "where", "defaultValue": "on",
"type": "java.lang.String", "type": "java.lang.String",
"description": "逻辑删除的位置支持where和on两个." "description": "逻辑删除的位置支持where和on两个."
}, },

View File

@ -29,7 +29,7 @@ public class ConfigProperties {
/** /**
* 逻辑删除类型 支持 where on * 逻辑删除类型 支持 where on
*/ */
public static LogicDelTypeEnum logicDelType = LogicDelTypeEnum.WHERE; public static LogicDelTypeEnum logicDelType = LogicDelTypeEnum.ON;
/** /**
* 逻辑删除类型 支持 where on * 逻辑删除类型 支持 where on
*/ */