|
@@ -0,0 +1,21 @@
|
|
|
+package org.springblade.business.feign;
|
|
|
+
|
|
|
+import org.springblade.common.constant.BusinessConstant;
|
|
|
+import org.springframework.cloud.openfeign.FeignClient;
|
|
|
+import org.springframework.web.bind.annotation.GetMapping;
|
|
|
+import org.springframework.web.bind.annotation.RequestBody;
|
|
|
+import org.springframework.web.bind.annotation.RequestParam;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+@FeignClient(value =
|
|
|
+ BusinessConstant.APPLICATION_WEATHER_NAME
|
|
|
+)
|
|
|
+public interface FileUtilsClient {
|
|
|
+
|
|
|
+ String API_PREFIX = "/fileUtilsClient";
|
|
|
+
|
|
|
+ @GetMapping(API_PREFIX + "/mergePdf")
|
|
|
+ void mergePdf(@RequestBody List<String> urlList, @RequestParam String localImgUrl);
|
|
|
+
|
|
|
+}
|