Commit 376c1120 authored by tianbo's avatar tianbo

fix(workflow): 更新工作流服务的 Feign 客户端配置

- 将服务名称从 AMOS-API-WORKFLOW 更改为 AMOS-API-WORKFLOW-TZS - 将路径从 workflow 更改为 workflow-tzs
parent 444db462
package com.yeejoin.amos.boot.biz.common.workflow.feign;
import java.util.HashMap;
import com.alibaba.fastjson.JSONObject;
import com.yeejoin.amos.component.feign.model.FeignClientResult;
import feign.Response;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.*;
import java.text.ParseException;
import java.util.HashMap;
import java.util.Map;
import com.alibaba.fastjson.JSONObject;
import feign.Response;
import org.typroject.tyboot.core.restful.utils.ResponseModel;
@FeignClient(name = "AMOS-API-WORKFLOW", path = "workflow", configuration =
@FeignClient(name = "AMOS-API-WORKFLOW-TZS", path = "workflow-tzs", configuration =
{ CommonMultipartSupportConfig.class })
public interface WorkflowFeignService {
/**
......
......@@ -10,7 +10,7 @@ import org.springframework.web.bind.annotation.*;
import java.util.List;
import java.util.Map;
@FeignClient(name = "AMOS-API-WORKFLOW", path = "workflow", configuration = {XidFeignConfiguration.class})
@FeignClient(name = "AMOS-API-WORKFLOW-TZS", path = "workflow-tzs", configuration = {XidFeignConfiguration.class})
public interface WorkFlowFeignService {
/***
......
......@@ -10,7 +10,7 @@ import org.springframework.web.bind.annotation.*;
import java.util.List;
import java.util.Map;
@FeignClient(name = "AMOS-API-WORKFLOW", path = "workflow", configuration = {XidFeignConfiguration.class})
@FeignClient(name = "AMOS-API-WORKFLOW-TZS", path = "workflow-tzs", configuration = {XidFeignConfiguration.class})
public interface WorkFlowFeignService {
/***
......
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