| | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | import com.qxueyou.scc.teach.student.model.StuStudent; |
| | | import org.apache.commons.lang3.StringUtils; |
| | | import org.apache.logging.log4j.LogManager; |
| | | import org.apache.logging.log4j.Logger; |
| | |
| | | @Autowired |
| | | IClassLectureService clsLectureService; |
| | | |
| | | /** |
| | | * 获取正常班级列表 |
| | | * |
| | | * @param keyword |
| | | * @param limit |
| | | * @param pageNum |
| | | * @return |
| | | */ |
| | | @ApiOperation(value = "获取学生详情接口", notes = "") |
| | | @GetMapping(value = "/student/getStudentDetails") |
| | | public Result getStudentDetails() { |
| | | |
| | | StuStudent stu = this.studentService.getStudentDetails(ClientUtils.getUserId()); |
| | | return new Result(true, "success", stu); |
| | | } |
| | | //---------------------------------------------------------------------------------app接口--------------------------------------------------------------------------------------------------------------------/ |
| | | |
| | | /** |