package com.dsh.activity.feignclient.other;
|
|
import com.dsh.activity.feignclient.other.model.StoreDetailOfCourse;
|
import org.springframework.cloud.openfeign.FeignClient;
|
import org.springframework.web.bind.annotation.PostMapping;
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
@FeignClient(value = "mb-cloud-other")
|
public interface StoreClient {
|
|
|
@PostMapping("/base/protocol/storeDetail/courseOfSto")
|
StoreDetailOfCourse getCourseOfStore(@RequestParam("storeId") Integer storeId);
|
}
|