|
@ -37,6 +37,7 @@ public class FlowRest implements FlowFeign { |
|
|
|
|
|
|
|
|
@ApiOperation(value = "启动流程") |
|
|
@ApiOperation(value = "启动流程") |
|
|
@PostMapping(value = "/startProcess") |
|
|
@PostMapping(value = "/startProcess") |
|
|
|
|
|
@Override |
|
|
public ResultBean<UpdateFlowFieldVo> startProcess(BusinessVariables bv) { |
|
|
public ResultBean<UpdateFlowFieldVo> startProcess(BusinessVariables bv) { |
|
|
ResultBean<UpdateFlowFieldVo> rb = ResultBean.fireFail(); |
|
|
ResultBean<UpdateFlowFieldVo> rb = ResultBean.fireFail(); |
|
|
//获取表单中的参数
|
|
|
//获取表单中的参数
|
|
@ -61,6 +62,7 @@ public class FlowRest implements FlowFeign { |
|
|
|
|
|
|
|
|
@ApiOperation(value = "办理") |
|
|
@ApiOperation(value = "办理") |
|
|
@PostMapping(value = "/handleProsess") |
|
|
@PostMapping(value = "/handleProsess") |
|
|
|
|
|
@Override |
|
|
public ResultBean<UpdateFlowFieldVo> handleProsess(BusinessVariables bv) { |
|
|
public ResultBean<UpdateFlowFieldVo> handleProsess(BusinessVariables bv) { |
|
|
ResultBean<UpdateFlowFieldVo> rb = ResultBean.fireFail(); |
|
|
ResultBean<UpdateFlowFieldVo> rb = ResultBean.fireFail(); |
|
|
ResultBean<UpdateFlowFieldVo> updateFlowFieldVoResultBean = flowService.handleProsess(bv, true); |
|
|
ResultBean<UpdateFlowFieldVo> updateFlowFieldVoResultBean = flowService.handleProsess(bv, true); |
|
@ -96,6 +98,7 @@ public class FlowRest implements FlowFeign { |
|
|
|
|
|
|
|
|
@ApiOperation(value = "加签") |
|
|
@ApiOperation(value = "加签") |
|
|
@PostMapping(value = "/delegate") |
|
|
@PostMapping(value = "/delegate") |
|
|
|
|
|
@Override |
|
|
public ResultBean delegate(FlowDelegateQuery flowDelegateQuery) { |
|
|
public ResultBean delegate(FlowDelegateQuery flowDelegateQuery) { |
|
|
return flowService.delegate(flowDelegateQuery); |
|
|
return flowService.delegate(flowDelegateQuery); |
|
|
} |
|
|
} |
|
|