| | |
| | | import com.dsh.account.feignclient.course.model.*; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | |
| | | import java.util.List; |
| | |
| | | List<CourseOfStoreVo> getStoreOfCourses(); |
| | | |
| | | @PostMapping("/base/coursePack/stuOfCourses") |
| | | StuWithCoursesListVo getStuOfCoursesDetails(GetStuOfCoursesDetails getStuOfCoursesDetails); |
| | | StuWithCoursesListVo getStuOfCoursesDetails(@RequestBody GetStuOfCoursesDetails getStuOfCoursesDetails); |
| | | |
| | | @PostMapping("/base/coursePack/continuingCourse") |
| | | StudentOfCourseVo getStudentCourse(GetStudentCourse getStudentCourse); |
| | | StudentOfCourseVo getStudentCourse(@RequestBody GetStudentCourse getStudentCourse); |
| | | |
| | | @PostMapping("/base/coursePack/afterCourseTwos") |
| | | List<AfterVideoVo> getAfterCourseTwos(@RequestParam("appUserId") Integer appUserId); |