Commit 91c55a4a by zhangkb

修改接口

parent ea21c756
...@@ -7,6 +7,7 @@ import java.util.Set; ...@@ -7,6 +7,7 @@ import java.util.Set;
import org.springframework.cloud.openfeign.FeignClient; import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RequestParam;
@FeignClient(name = "MetadataRepo") @FeignClient(name = "MetadataRepo")
...@@ -22,7 +23,7 @@ public interface RepoServiceClient { ...@@ -22,7 +23,7 @@ public interface RepoServiceClient {
@PostMapping(value = "/rest/tag/getPageByTag") @PostMapping(value = "/rest/tag/getPageByTag")
public Map<String,Object> getPageByTag( public Map<String,Object> getPageByTag(
@RequestParam Map<Long, Set<String>> systemTagMap, @RequestBody Map<Long, Set<String>> systemTagMap,
@RequestParam(required = false) String modelPath, @RequestParam(required = false) String modelPath,
@RequestParam String idPath, @RequestParam String idPath,
@RequestParam String tagType, @RequestParam String tagType,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment