src/main/java/com/qxueyou/scc/teach/student/service/impl/StudentService.java
@@ -358,6 +358,12 @@ public StuStudent getStudentByNo(String studentNo) { return this.findUnique("from StuStudent where studentNo=? ", CollectionUtils.newList(studentNo), StuStudent.class); } @Override public StuStudent getStudentDetails(String userId) { return this.findUnique("from StuStudent where deleteFlag is false and userId=? ", CollectionUtils.newList(userId), StuStudent.class); } @Override public List<StuStudent> getStudentByclassId(String classId) { QStuStudent qClassStudent=QStuStudent.stuStudent;