cloud-server-management/src/main/java/com/dsh/guns/modular/system/controller/code/CoachController.java
@@ -327,11 +327,15 @@ List<CoachSerchVO> coachSerchVOS = coachClient.listAll(coachQuery); for (CoachSerchVO coachSerchVO : coachSerchVOS) { Integer cityManagerId = coachSerchVO.getCityManagerId(); if(0 == cityManagerId){ coachSerchVO.setNameAndPhone("平台"); }else { TOperator byId = operatorService.getById(cityManagerId); Integer userId = byId.getUserId(); User byId1 = userService.getById(userId); coachSerchVO.setNameAndPhone(byId.getName()+""+byId1.getPhone()); } } return coachSerchVOS; } }