update docs/zh/base/add-delete-update.md.

少了’;‘

Signed-off-by: codingdragon <5562464+dragon_haoge@user.noreply.gitee.com>
This commit is contained in:
codingdragon 2024-07-16 08:10:13 +00:00 committed by Gitee
parent 39aa24872f
commit cd2ba6e897
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -165,7 +165,7 @@ account.setUserName(null);
// 通过 UpdateWrapper 操作 account 数据 // 通过 UpdateWrapper 操作 account 数据
UpdateWrapper wrapper = UpdateWrapper.of(account); UpdateWrapper wrapper = UpdateWrapper.of(account);
wrapper.setRaw("age", "age + 1") wrapper.setRaw("age", "age + 1");
accountMapper.update(account); accountMapper.update(account);
``` ```