| | |
| | | package com.dsh.account.feignclient.course; |
| | | |
| | | import com.dsh.account.feignclient.course.model.CoursePackage; |
| | | import com.dsh.account.feignclient.course.model.TCoursePackagePayment; |
| | | import io.swagger.models.auth.In; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author zhibing.pu |
| | |
| | | */ |
| | | @PostMapping("/base/coursePackage/queryCoursePackageById") |
| | | CoursePackage queryCoursePackageById(Integer id); |
| | | @PostMapping("/base/coursePackage/queryByCode") |
| | | Integer queryByCode(String code); |
| | | } |