| | |
| | | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.dsh.course.feignClient.course.model.QueryCoursePackageLists; |
| | | import com.dsh.course.feignClient.course.model.QueryExamineCoursePackageLists; |
| | | import com.dsh.course.feignClient.course.model.QueryRegistrationRecord; |
| | | import com.dsh.course.feignClient.course.model.TCoursePackage; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | |
| | |
| | | */ |
| | | @PostMapping("/coursePackage/queryCoursePackageLists") |
| | | Page<Map<String, Object>> queryCoursePackageLists(QueryCoursePackageLists queryCoursePackageLists); |
| | | |
| | | |
| | | /** |
| | | * 添加数据 |
| | | * @param coursePackage |
| | | */ |
| | | @PostMapping("/coursePackage/addCoursePackage") |
| | | Integer addCoursePackage(TCoursePackage coursePackage); |
| | | |
| | | |
| | | /** |
| | | * 根据id查询数据 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | @PostMapping("/base/coursePackage/queryCoursePackageById") |
| | | TCoursePackage queryById(Integer id); |
| | | |
| | | |
| | | /** |
| | | * 修改数据 |
| | | * @param coursePackage |
| | | */ |
| | | @PostMapping("/coursePackage/updateCoursePackageById") |
| | | void updateCoursePackage(TCoursePackage coursePackage); |
| | | |
| | | |
| | | /** |
| | | * 获取课包审核列表 |
| | | * @param queryExamineCoursePackageLists |
| | | * @return |
| | | */ |
| | | @PostMapping("/coursePackage/queryExamineCoursePackageLists") |
| | | Page<Map<String, Object>> queryExamineCoursePackageLists(QueryExamineCoursePackageLists queryExamineCoursePackageLists); |
| | | |
| | | } |