中扬CRM客户关系管理系统
#
luxiaotao1123
2022-11-08 d6428f6980dd0fc8cb753b1de19a18ed00fdf1a5
src/main/java/com/zy/crm/manager/controller/CstmrController.java
@@ -306,7 +306,7 @@
    @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());