18、首页统计模块 (1)统计用户总数 在UserInfoMapper中新增方法 /** * 查询用户总数 */ @Select("select count(*) from user_info") Integer count(); 在UserInfoService中新建方法 /** * 查询用户总数 */