微信小程序商场项目(SpringBoot)--- 首页统计模块

18、首页统计模块

(1)统计用户总数

  • 在UserInfoMapper中新增方法
/**
 * 查询用户总数
 */
@Select("select count(*) from user_info")
Integer count();
  • 在UserInfoService中新建方法
/**
 * 查询用户总数
 */
public Integer count()

你可能感兴趣的:(项目实战,微信小程序,spring,boot,echarts)