mybatis plus 更新
时间: 2023-09-05 07:14:01 浏览: 86
mybatis-plus
数据时如何设置更新条件?
在 Mybatis Plus 中更新数据可以使用 UpdateWrapper 对象来设置更新条件,具体可以通过以下代码实现:
```
UpdateWrapper<User> updateWrapper = new UpdateWrapper<>();
updateWrapper.eq("username", "test").set("age", 20);
int result = userMapper.update(null, updateWrapper);
```
其中,eq() 方法用于设置查询条件,set() 方法用于设置更新的字段和值。在最后一行代码中,通过调用 userMapper.update() 方法来执行更新操作,第一个参数为要更新的实体对象,可以为 null,第二个参数为 UpdateWrapper 对象,用于设置更新条件。执行完成后,会返回更新影响的行数。
阅读全文