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);
|
}
|