package com.dsh.course.feignClient.course;
|
|
import com.dsh.course.feignClient.course.model.CoursePackageTypeVO;
|
import com.dsh.course.feignClient.course.model.TCoursePackageType;
|
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.RequestMapping;
|
import org.springframework.web.bind.annotation.ResponseBody;
|
|
import java.util.List;
|
|
/**
|
* @author zhibing.pu
|
* @Date 2023/8/1 12:02
|
*/
|
@FeignClient("mb-cloud-course")
|
public interface CoursePackageTypeClient {
|
|
|
/**
|
* 删除课包类型
|
* @param
|
* @return
|
*/
|
@RequestMapping("/coursePackageType/delete")
|
Object delete(@RequestBody CoursePackageTypeVO coachType);
|
|
/**
|
* 修改课包类型
|
* @param
|
* @return
|
*/
|
@RequestMapping("/coursePackageType/update")
|
Object update(@RequestBody CoursePackageTypeVO coachType);
|
/**
|
* 新增课包类型
|
*/
|
@RequestMapping("/coursePackageType/add")
|
Object add(@RequestBody String name);
|
/**
|
* 获取课包所有类型
|
* @return
|
*/
|
@PostMapping("/coursePackageType/queryAllCoursePackageType")
|
List<TCoursePackageType> queryAllCoursePackageType();
|
}
|