QueryWrapper 更新数字减1
时间: 2023-11-11 22:58:12 浏览: 109
mybatis-plus QueryWrapper自定义查询条件的实现
5星 · 资源好评率100%
可以使用LambdaUpdateWrapper来更新数字减1,示例如下:
```
LambdaUpdateWrapper<Entity> updateWrapper = new LambdaUpdateWrapper<>();
updateWrapper.eq(Entity::getId, id)
.set(Entity::getCount, Entity::getCount - 1);
entityMapper.update(null, updateWrapper);
```
其中,`Entity`为实体类,`entityMapper`为MyBatis的Mapper接口。
阅读全文