| | |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | @FeignClient(value = "mb-cloud-course") |
| | |
| | | |
| | | |
| | | @PostMapping("/base/coursePack/sessionNames") |
| | | List<StuSessionDetailsVo> getStuSessionList(GetStuSessionList getStuSessionList); |
| | | List<StuSessionDetailsVo> getStuSessionList(@RequestBody GetStuSessionList getStuSessionList); |
| | | |
| | | @PostMapping("/base/coursePack/paymentCourse") |
| | | public List<PurchaseRecordVo> queryCourseDetails(GetStuSessionList getStuSessionList); |
| | | public List<PurchaseRecordVo> queryCourseDetails(@RequestBody GetStuSessionList getStuSessionList); |
| | | |
| | | } |