| | |
| | | @RequestMapping(value = "/cstmr/followers/table/auth") |
| | | @ManagerAuth |
| | | public R cstmrFollowersTable(@RequestParam("cstmrId") Long cstmrId) { |
| | | List<CstmrFoll> cstmrFolls = cstmrFollService.selectList(new EntityWrapper<CstmrFoll>().eq("cstmr_id", cstmrId)); |
| | | List<CstmrFoll> cstmrFolls = cstmrFollService.selectList(new EntityWrapper<CstmrFoll>().eq("cstmr_id", cstmrId).orderBy("id", false)); |
| | | List<CstmrFollowerTableVo> result = new ArrayList<>(); |
| | | for (CstmrFoll cstmrFoll : cstmrFolls) { |
| | | User user = userService.selectById(cstmrFoll.getUserId()); |