| | |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.ResponseBody; |
| | | |
| | | import java.util.HashMap; |
| | | import java.util.List; |
| | |
| | | @PostMapping("/course/queryCourseLists") |
| | | Page<Map<String, Object>> queryCourseLists(QueryCourseList queryCourseList); |
| | | |
| | | |
| | | /** |
| | | * 添加课程 |
| | | * @param course |
| | | */ |
| | | @PostMapping("/course/queryCourseList") |
| | | @PostMapping("/course/addCourse") |
| | | void addCourse(TCourse course); |
| | | |
| | | |