puzhibing
2023-07-04 75b60332f174363cfe67f61dea87832be708ac15
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.dsh.account.feignclient.other;
 
import com.dsh.account.feignclient.course.model.QueryStoreList;
import com.dsh.account.feignclient.other.model.Store;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.PostMapping;
 
import java.util.List;
 
/**
 * @author zhibing.pu
 * @date 2023/6/24 15:54
 */
@FeignClient(value = "mb-cloud-other")
public interface StoreClient {
 
 
    /**
     * 获取门店列表
     * @return
     */
    @PostMapping("/store/queryStoreList")
    List<Store> queryStoreList(QueryStoreList queryStoreList);
}