Commit bd75ccc9 by “Kongxiangkun”

增加积分商城相关代码

parent b297ce35
...@@ -221,6 +221,7 @@ public class PointServiceImpl extends ServiceImpl<PointMapper, Point> implements ...@@ -221,6 +221,7 @@ public class PointServiceImpl extends ServiceImpl<PointMapper, Point> implements
public List<PointDetailListVO> getPointDetailsList(Long accountId, Integer pageNo, Integer pageSize) { public List<PointDetailListVO> getPointDetailsList(Long accountId, Integer pageNo, Integer pageSize) {
pageNo = (pageNo - 1) * pageSize; pageNo = (pageNo - 1) * pageSize;
log.info("积分明细入参 accountId:{}, pageNo:{}, pageSize:{}", accountId, pageNo, pageSize);
return pointDetailsService.getPointDetailsList(accountId, pageNo, pageSize); return pointDetailsService.getPointDetailsList(accountId, pageNo, pageSize);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment