lisy
2023-07-03 d5367176a4699fccca4b0d85442e9ed735a8e4d5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.dsh.account.feignclient.other;
 
import com.dsh.account.feignclient.other.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);
}