Commit ea21c756 by zhangkb

修改接口

parent b973bdd1
......@@ -7,7 +7,6 @@ import java.util.Set;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestParam;
@FeignClient(name = "MetadataRepo")
......@@ -23,7 +22,7 @@ public interface RepoServiceClient {
@PostMapping(value = "/rest/tag/getPageByTag")
public Map<String,Object> getPageByTag(
@RequestBody Map<Long, Set<String>> systemTagMap,
@RequestParam Map<Long, Set<String>> systemTagMap,
@RequestParam(required = false) String modelPath,
@RequestParam String idPath,
@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