manage/statistic/base_count.do以及/manage/user/list.do
来源:6-1 用户模块开发概要与接口设计讲解
JohannYellow
2019-12-22
老师可以提供一下这个两个接口的实现吗 Control里面的实现以及sql语句和impl文件里面的实现 麻烦老师了
2回答
-
Geely
2019-12-27
com.mmall.controller.backend.StatisticManageController
com.mmall.service.impl.StatisticServiceImpl
具体这个是在二期的代码里。一期没有讲
int userCount = userMapper.selectCount();
int productCount = productMapper.selectCount();
int orderCount = orderMapper.selectCount();
Map<String,Integer> resultMap = Maps.newHashMap();
resultMap.put("userCount",userCount);
resultMap.put("productCount",productCount);
resultMap.put("orderCount",orderCount);
return ServerResponse.createBySuccess(resultMap);com.mmall.controller.backend.StatisticManageController
<select id="selectCount" resultType="int" parameterType="string" >
select count(1) from mmall_order
</select>举个count的sql例子
00 -
包肉的锅
2019-12-23
、
git仓库里有源代码
022019-12-25
相似问题