| | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.dsh.course.entity.TCoursePackage; |
| | | import com.dsh.course.feignclient.model.CourseOfStoreVo; |
| | | import com.dsh.course.model.CoursePackageInfo; |
| | | import com.dsh.course.model.CoursePackageList; |
| | | import com.dsh.course.model.CoursePackageListVo; |
| | | import com.dsh.course.model.PaymentCourseVo; |
| | | import com.dsh.course.util.ResultUtil; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | |
| | | List<CourseOfStoreVo> queryStoreOfCourse(); |
| | | |
| | | |
| | | |
| | | /** |
| | | * 获取课程列表 |
| | | * @param coursePackageList |
| | | * @return |
| | | * @throws Exception |
| | | */ |
| | | List<CoursePackageListVo> queryCourseList(Integer uid, CoursePackageList coursePackageList) throws Exception; |
| | | |
| | | |
| | | /** |
| | | * 获取课包详情 |
| | | * @param uid |
| | | * @param id |
| | | * @return |
| | | * @throws Exception |
| | | */ |
| | | CoursePackageInfo queryCourseInfo(Integer uid, Integer id, String lon, String lat) throws Exception; |
| | | |
| | | |
| | | /** |
| | | * 课程报名支付 |
| | | * @param uid |
| | | * @param paymentCourseVo |
| | | * @return |
| | | * @throws Exception |
| | | */ |
| | | ResultUtil paymentCourse(Integer uid, PaymentCourseVo paymentCourseVo) throws Exception; |
| | | } |