|
@@ -103,13 +103,13 @@ public interface IFlowClient {
|
|
* 撤回
|
|
* 撤回
|
|
*/
|
|
*/
|
|
@PostMapping(WITHDRAW)
|
|
@PostMapping(WITHDRAW)
|
|
- R withdraw(@RequestParam Long withdrawExampleInfoId, @RequestParam Long withdrawExampleDetailsId);
|
|
|
|
|
|
+ R withdraw(@RequestParam("withdrawExampleInfoId") Long withdrawExampleInfoId, @RequestParam("withdrawExampleDetailsId") Long withdrawExampleDetailsId);
|
|
|
|
|
|
/**
|
|
/**
|
|
* 撤销
|
|
* 撤销
|
|
*/
|
|
*/
|
|
@PostMapping(REVOKE)
|
|
@PostMapping(REVOKE)
|
|
- R revoke(@RequestParam Long revokeExampleInfoId);
|
|
|
|
|
|
+ R revoke(@RequestParam("revokeExampleInfoId") Long revokeExampleInfoId);
|
|
|
|
|
|
/**
|
|
/**
|
|
* 根据流程ID获取信息
|
|
* 根据流程ID获取信息
|