| package com.dsh.activity.feignclient.course; | 
|   | 
|   | 
| import com.dsh.activity.feignclient.course.model.CoursePackagePaymentConfig; | 
| import org.springframework.cloud.openfeign.FeignClient; | 
| import org.springframework.web.bind.annotation.PostMapping; | 
| import org.springframework.web.bind.annotation.RequestBody; | 
|   | 
| import java.util.List; | 
|   | 
|   | 
| @FeignClient(value = "mb-cloud-course") | 
| public interface CoursePackageConfigClient { | 
|   | 
|     @PostMapping("/base/coursePack/getCoursePackageConfig") | 
|     List<CoursePackagePaymentConfig> getCourseConfigList(@RequestBody Integer coursePackageId); | 
|   | 
| } |