| | |
| | | import com.dsh.course.feignClient.course.model.QueryCoursePackageStudentList; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | |
| | | * @return |
| | | */ |
| | | @PostMapping("/coursePackageStudent/queryByCoursePackageSchedulingId") |
| | | List<CoursePackageStudent> queryByCoursePackageSchedulingId(Long coursePackageSchedulingId); |
| | | List<CoursePackageStudent> queryByCoursePackageSchedulingId(@RequestBody List<Long> coursePackageSchedulingId); |
| | | |
| | | |
| | | /** |