Skip to content

Commit

Permalink
doc
Browse files Browse the repository at this point in the history
  • Loading branch information
miemieYaho committed Nov 27, 2024
1 parent dda2dce commit 9a9b6ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/content/docs/guides/logic-delete.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ MyBatis-Plus 的逻辑删除功能会在执行数据库操作时自动处理逻
## 支持的数据类型

逻辑删除字段支持所有数据类型,但推荐使用 `Integer``Boolean``LocalDateTime`
如果使用 `datetime` 类型,可以配置逻辑未删除值为 `null`,已删除值可以使用函数如 `now()` 来获取当前时间。
如果使用 `datetime` 类型,可以配置逻辑未删除值为 `null`(长度为4的字符串,在yaml中需使用转义符(单引号)包裹),已删除值可以使用函数如 `now()` 来获取当前时间。
如果使用 `bigint` 类型,可以配置逻辑未删除值为 0,已删除值可以使用函数如 `UNIX_TIMESTAMP()` 来获取当前时间戳作为删除标识。适合用于将删除字段作为唯一索引组成列,可以多次逻辑删除.

## 使用方法
Expand Down

0 comments on commit 9a9b6ad

Please sign in to comment.