|
|
@ -9,6 +9,7 @@ import com.yxt.supervise.enterprisecentre.biz.feign.fallback.FlowableFallback; |
|
|
|
import io.swagger.annotations.ApiOperation; |
|
|
|
import org.springframework.cloud.openfeign.FeignClient; |
|
|
|
import org.springframework.web.bind.annotation.PostMapping; |
|
|
|
import org.springframework.web.bind.annotation.RequestBody; |
|
|
|
|
|
|
|
/** |
|
|
|
* @description: |
|
|
@ -25,13 +26,13 @@ public interface FlowFeign { |
|
|
|
|
|
|
|
@ApiOperation(value = "启动流程") |
|
|
|
@PostMapping(value = "/startProcess") |
|
|
|
public ResultBean<UpdateFlowFieldVo> startProcess(BusinessVariables bv); |
|
|
|
public ResultBean<UpdateFlowFieldVo> startProcess(@RequestBody BusinessVariables bv); |
|
|
|
|
|
|
|
@ApiOperation(value = "办理") |
|
|
|
@PostMapping(value = "/handleProsess") |
|
|
|
public ResultBean<UpdateFlowFieldVo> handleProsess(BusinessVariables bv); |
|
|
|
public ResultBean<UpdateFlowFieldVo> handleProsess(@RequestBody BusinessVariables bv); |
|
|
|
|
|
|
|
@ApiOperation(value = "加签") |
|
|
|
@PostMapping(value = "/delegate") |
|
|
|
public ResultBean delegate(FlowDelegateQuery flowDelegateQuery); |
|
|
|
public ResultBean delegate(@RequestBody FlowDelegateQuery flowDelegateQuery); |
|
|
|
} |
|
|
|