| | |
| | | |
| | | @Autowired |
| | | private CoachService coachService; |
| | | |
| | | @Override |
| | | public List<StuCommentsVo> queryStuCommentsList(Integer stuId) { |
| | | List<StuCommentsVo> stuCommentsVos = new ArrayList<>(); |
| | | TStudent tStudent = tstuMapper.selectById(stuId); |
| | | List<EvaluateStudent> evaluateStudents = this.list(new QueryWrapper<EvaluateStudent>() |
| | | .eq("studentId",stuId )); |
| | | .eq("studentId", stuId)); |
| | | |
| | | |
| | | if (evaluateStudents.size() > 0){ |
| | | if (evaluateStudents.size() > 0) { |
| | | for (EvaluateStudent evaluateStudent : evaluateStudents) { |
| | | StuCommentsVo vo = new StuCommentsVo(); |
| | | |