44323
2023-10-27 1b7f0a8746bc09a3e0cfdef9610ca4e08ed919e2
cloud-server-management/src/main/java/com/dsh/course/feignClient/course/CoursePackageClient.java
@@ -10,6 +10,7 @@
import com.dsh.guns.modular.system.model.dto.BallQueryDto;
import com.dsh.guns.modular.system.model.dto.PacQueryDto;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.ResponseBody;
@@ -28,8 +29,8 @@
    /**
     * 根据课包类型获取课包
     */
    @PostMapping("/base/coursePackage/getCoursePackageByType")
    List<TCoursePackage> getCoursePackageByType(@RequestBody Integer typeId);
    @PostMapping("/base/coursePackage/getCoursePackageByType/{typeId}/{storeId}")
    List<TCoursePackage> getCoursePackageByType(@PathVariable("typeId") Integer typeId, @PathVariable("storeId")Integer storeId);
    /**
     * 根据门店id获取课包
     */