puzhibing
2023-08-04 624c9eec90d59297800f03276f8518daa1bd9f94
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.dsh.course.feignClient.course;
 
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.dsh.course.feignClient.course.model.QueryCoursePackageLists;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.PostMapping;
 
import java.util.Map;
 
/**
 * @author zhibing.pu
 * @Date 2023/8/1 15:12
 */
@FeignClient("mb-cloud-course")
public interface CoursePackageClient {
 
 
    /**
     * 获取课包管理列表数据
     * @param queryCoursePackageLists
     * @return
     */
    @PostMapping("/coursePackage/queryCoursePackageLists")
    Page<Map<String, Object>> queryCoursePackageLists(QueryCoursePackageLists queryCoursePackageLists);
}