liujie
2023-09-16 6b9e39445a8e56ab0d8195663f1aa6e3c49d6836
cloud-server-activity/src/main/java/com/dsh/activity/feignclient/other/StoreClient.java
@@ -4,6 +4,7 @@
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.RequestBody;
import org.springframework.web.bind.annotation.RequestParam;
import java.util.List;
@@ -17,5 +18,5 @@
    @PostMapping("/store/queryStoreByIds")
    List<Store> queryStoreByIds(List<Integer> ids);
    List<Store> queryStoreByIds(@RequestBody List<Integer> ids);
}