| | |
| | | import com.dsh.course.feignclient.model.*; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | |
| | | @PostMapping("/coursePack/storeOfCourse") |
| | | List<CourseOfStoreVo> getStoreOfCourses(); |
| | | |
| | | @PostMapping("/coursePack/stuOfCourses") |
| | | StuWithCoursesListVo getStuOfCoursesDetails(@RequestBody Integer stuId,@RequestBody Integer appUserId); |
| | | |
| | | @PostMapping("/coursePack/continuingCourse") |
| | | StudentOfCourseVo getStudentCourse(@RequestBody Integer courseId, |
| | | @RequestBody Integer stuId, |
| | | @RequestBody Integer appUserId); |
| | | |
| | | } |