mybatis plus3.3中where id=什么,怎么写
时间: 2024-03-28 09:41:29 浏览: 70
mybatis-plus-3.3.0.jar
在Mybatis Plus 3.3中,如果你想要根据id查询数据,可以使用如下代码:
```java
QueryWrapper wrapper = new QueryWrapper();
wrapper.eq("id", yourId);
List<YourEntity> list = yourMapper.selectList(wrapper);
```
其中,`yourId`是你想要查询的id,`yourMapper`是你的Mapper接口类,`YourEntity`是你的实体类。在`eq`方法中,第一个参数是要查询的字段名,第二个参数是要查询的值。
阅读全文