Skip to content

Commit

Permalink
逻辑删除调整
Browse files Browse the repository at this point in the history
  • Loading branch information
yulichang committed Dec 10, 2023
1 parent 9ce2b51 commit 2b42b33
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public class MybatisPlusJoinProperties {
/**
* 逻辑删除类型 支持 where on
*/
private String logicDelType = "where";
private String logicDelType = "on";

/**
* 映射查询最大深度
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
},
{
"name": "mybatis-plus-join.logic-del-type",
"defaultValue": "where",
"defaultValue": "on",
"type": "java.lang.String",
"description": "逻辑删除的位置支持where和on两个."
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class ConfigProperties {
/**
* 逻辑删除类型 支持 where on
*/
public static LogicDelTypeEnum logicDelType = LogicDelTypeEnum.WHERE;
public static LogicDelTypeEnum logicDelType = LogicDelTypeEnum.ON;
/**
* 逻辑删除类型 支持 where on
*/
Expand Down

0 comments on commit 2b42b33

Please sign in to comment.