| | |
| | | package com.dsh.course.feignClient.account; |
| | | |
| | | import com.dsh.course.dto.CreateHistoryDto; |
| | | import com.dsh.course.dto.GetHistoryDto; |
| | | import com.dsh.course.feignClient.account.model.QueryAppUser; |
| | | import com.dsh.course.feignClient.account.model.QueryAppUserVO; |
| | | |
| | |
| | | |
| | | @PostMapping("/student/webOneStudent") |
| | | TStudentDto queryOneWebUser(@RequestParam("id") Integer id); |
| | | |
| | | @PostMapping("/student/update") |
| | | void updateStudent(TStudent tStudent); |
| | | |
| | | |
| | | @PostMapping("/student/createHistory") |
| | | void createHistory(CreateHistoryDto historyDto); |
| | | |
| | | |
| | | @PostMapping("/student/getHisory") |
| | | List<GetHistoryDto> getHisory(); |
| | | } |