findAndById

This commit is contained in:
Jeremy Liang
2026-02-04 04:47:08 +08:00
parent 3ec21f6f35
commit ce1514fd39
4 changed files with 33 additions and 34 deletions

View File

@@ -31,7 +31,7 @@
- `deleteAll({Example} example, boolean release)` - 删除(批量,支持物理删除)
- `recoverById(long id)` - 从回收站恢复(单个)
- `recoverAll({Example} example)` - 从回收站恢复(批量)
- `findNoWhereById(long id)` - 查找(不区分有效/回收站)
- `findAnyById(long id)` - 查找(不区分有效/回收站)
- `findValidById(long id)` - 查找有效记录(单个)
- `findTrashById(long id)` - 查找回收站记录(单个)
- `findValidOne({Example} example)` - 查找有效记录(单个,支持条件)