|
@@ -2,6 +2,7 @@ package org.springblade.manager.feign;
|
|
|
|
|
|
import org.springframework.cloud.openfeign.FeignClient;
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
+import org.springframework.web.bind.annotation.RequestParam;
|
|
|
|
|
|
import static org.springblade.core.launch.constant.AppConstant.APPLICATION_NAME_PREFIX;
|
|
|
|
|
@@ -13,5 +14,5 @@ public interface INodeBaseInfoServiceClient {
|
|
|
String API_PREFIX = "/api/manager/nodebaseinfo";
|
|
|
|
|
|
@GetMapping(API_PREFIX + "/getNameRuleByRule")
|
|
|
- String getNameRuleByRule(String nameRule, String wbsId);
|
|
|
+ String getNameRuleByRule(@RequestParam String nameRule, @RequestParam String wbsId);
|
|
|
}
|