From 28ebaacb7e82acd9aea3a1a026ce2670f24309dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=80=E6=BA=90=E6=B5=B7=E5=93=A5?= Date: Sun, 9 Jul 2023 17:35:59 +0800 Subject: [PATCH] style: add .editorconfig --- .editorconfig | 19 +++++++++++++++++++ docs/zh/base/add-delete-update.md | 10 +++++----- docs/zh/base/query.md | 6 +++--- 3 files changed, 27 insertions(+), 8 deletions(-) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..ae234952 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,19 @@ + +# 告诉EditorConfig插件,这是根文件,不用继续往上查找 +root = true + +# 匹配全部文件 +[*] +# 结尾换行符,可选"lf"、"cr"、"crlf" +end_of_line = lf +# 在文件结尾插入新行 +insert_final_newline = true +# 删除一行中的前后空格 +trim_trailing_whitespace = true +# 设置字符集 +charset = utf-8 +# 缩进风格,可选"space"、"tab" +indent_style = tab +# 缩进的空格数 +indent_size = 4 + diff --git a/docs/zh/base/add-delete-update.md b/docs/zh/base/add-delete-update.md index 90d1b287..8539484e 100644 --- a/docs/zh/base/add-delete-update.md +++ b/docs/zh/base/add-delete-update.md @@ -61,7 +61,7 @@ delete from tb_account where id >= 100; Account account = UpdateEntity.of(Account.class, 100); //Account account = UpdateEntity.of(Account.class); //account.setId(100); - + account.setUserName(null); account.setAge(10); @@ -79,7 +79,7 @@ accountMapper.update(account); ```sql update tb_account -set user_name = ?, age = ? where id = ? +set user_name = ?, age = ? where id = ? #参数: null,10,100 ``` @@ -101,7 +101,7 @@ account.setId(100); ```sql update tb_account -set user_name = ?, age = age + 1 where id = ? +set user_name = ?, age = age + 1 where id = ? ``` 此时,我们可以直接把 `Account` 强转为 `UpdateWrapper` 然后进行更新,例如: @@ -167,6 +167,6 @@ accountMapper.update(account); ```sql update tb_account -set user_name = "michael", age = (select ... from ... ) +set user_name = "michael", age = (select ... from ... ) where id = 100 -``` \ No newline at end of file +``` diff --git a/docs/zh/base/query.md b/docs/zh/base/query.md index 67244ffe..1b2de61e 100644 --- a/docs/zh/base/query.md +++ b/docs/zh/base/query.md @@ -87,7 +87,7 @@ public class ArticleDTO { private Long accountId; private String title; private String content; - + //以下用户相关字段 private String userName; private int age; @@ -141,7 +141,7 @@ QueryWrapper query = QueryWrapper.create() .where(ACCOUNT.ID.ge(0)); List results = mapper.selectListByQueryAs(query, ArticleDTO.class); -System.out.println(results); +System.out.println(results); ``` ### 方式 3 @@ -155,7 +155,7 @@ public class ArticleDTO { private Long accountId; private String title; private String content; - + //直接定义 Account 对象 private Account account; }