mybatis-plus count如何使用
时间: 2023-05-12 12:05:47 浏览: 569
spring-boot-mybatis-plus 一套打通 有注释 打开就可使用
Mybatis-plus count 可以通过以下方式使用:
1. 在 Mapper 接口中定义一个 count 方法,使用 @Select 注解,指定 SQL 语句,例如:
@Select("select count(*) from user")
int count();
2. 在 Service 层中调用 Mapper 接口的 count 方法,例如:
int count = userMapper.count();
这样就可以获取 user 表中的记录数了。
阅读全文