review code.

This commit is contained in:
lijiahang
2023-09-13 14:20:55 +08:00
parent 3b74520c38
commit 3990090155
14 changed files with 91 additions and 123 deletions

View File

@@ -28,6 +28,15 @@ public interface IMapper<T> extends BaseMapper<T> {
return Conditions.wrapper();
}
/**
* 获取 LambdaQueryWrapper 对象
*
* @return 获取 wrapper
*/
default LambdaQueryWrapper<T> lambda() {
return new LambdaQueryWrapper<>();
}
/**
* 获取 DataQuery 对象
*