lisy
2023-06-30 add48c8930d02d58046e89e78b0530c2d5fce32d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.dsh.other.feignclient;
 
import com.dsh.other.feignclient.model.StoreDetailOfCourse;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
 
@FeignClient(value = "mb-cloud-other")
public interface StoreClient {
 
 
    @PostMapping("/storeDetail/courseOfSto")
    public StoreDetailOfCourse getCourseOfStore(@RequestBody Integer storeId);
}