java110
2023-05-15 1727f490edc5940c38044bbd45503943580c5121
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.java110.intf.common;
 
import com.java110.config.feign.FeignConfiguration;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
 
@FeignClient(name = "common-service", configuration = {FeignConfiguration.class})
@RequestMapping("/activitiWorkflowImageApi")
public interface IActivitiWorkflowImageInnerServiceSMO {
 
    /**
     * 启动流程
     *
     * @return
     */
    @RequestMapping(value = "/getWorkflowImage", method = RequestMethod.POST)
    public String getWorkflowImage(@RequestBody String taskId);
 
 
 
}