From 50d1c119f984c417bfa7b32220c20f8fb22ef993 Mon Sep 17 00:00:00 2001 From: admin <570810310@qq.com> Date: Fri, 29 Jan 2021 17:27:16 +0800 Subject: [PATCH] update --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d4aa199..5d2f4f5 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ #### select(UserEntity::getId) 查询指定的字段,支持可变参数 -查询user表中的head_img,name和user_address表中的address,tel +简单的3表查询 ```java class test { @@ -100,7 +100,7 @@ class test { } ``` -#### selectAll(UserEntity.class) 查询UserEntity全部字段 +#### selectAll() 查询UserEntity全部字段 查询user全部字段和user_address表中的address,tel @@ -134,7 +134,7 @@ FROM user t0 #### as(UserEntity::getHeadImg,UserDTO::getUserHeadImg) -查询字段head_img as userHeadImg +查询字段别名 head_img as userHeadImg ```java class test {