| | |
| | | import com.dsh.course.feignClient.course.model.TCoursePackage; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.ResponseBody; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | |
| | | |
| | | |
| | | /** |
| | | * 根据课包类型获取课包 |
| | | */ |
| | | @PostMapping("/base/coursePackage/getCoursePackageByType") |
| | | List<TCoursePackage> getCoursePackageByType(@RequestBody Integer typeId); |
| | | /** |
| | | * 根据门店id获取课包 |
| | | */ |
| | | @PostMapping("/base/coursePackage/getCoursePackageByStoreId") |
| | | List<TCoursePackage> getCoursePackageByStoreId(@RequestBody Integer storeId); |
| | | /** |
| | | * 获取课包管理列表数据 |
| | | * @param queryCoursePackageLists |
| | | * @return |