Commit c022ac04 by chamberone

fix: 微服务调用修复

1 parent 58cbee4e
...@@ -14,7 +14,6 @@ import com.dituhui.pea.common.Result; ...@@ -14,7 +14,6 @@ import com.dituhui.pea.common.Result;
* *
*/ */
@FeignClient(value = "project-order", contextId = "org") @FeignClient(value = "project-order", contextId = "org")
@RequestMapping("/pea-order")
public interface IOrganization { public interface IOrganization {
/** /**
...@@ -24,7 +23,7 @@ public interface IOrganization { ...@@ -24,7 +23,7 @@ public interface IOrganization {
* @param organizationIds 组织编号 * @param organizationIds 组织编号
* @return * @return
*/ */
@RequestMapping(value = "/organization/list", method = RequestMethod.GET) @RequestMapping(value = "/pea-order/organization/list", method = RequestMethod.GET)
public Result<?> getAllOrganizations(@RequestParam("levelType") String levelType, public Result<?> getAllOrganizations(@RequestParam("levelType") String levelType,
@RequestParam("organizationIds") List<String> organizationIds); @RequestParam("organizationIds") List<String> organizationIds);
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!