工作流实战_09_flowable 流程实例挂起与激活
生活随笔
收集整理的這篇文章主要介紹了
工作流实战_09_flowable 流程实例挂起与激活
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
由于群里有些朋友對這個flowable還不是 很熟悉,在群里的小伙伴的建議下,我?guī)煾?小學(xué)生05101)制作一個開源的項目源碼,一共大家學(xué)習(xí)和交流,希望對有幫助,少走彎路 如果有不懂的問題可以入群:633168411 里面都是一些熱心腸的人。
| 代碼分支 | flowable-base |
| 視頻講解地址 | https://space.bilibili.com/485524575/channel/detail?cid=94579 |
| 0000001 | test |
| 0000002 | test |
| 0000003 | test |
| 0000004 | test |
文章目錄
- 1. 演示
- 2. 代碼
1. 演示
2. 代碼
public ReturnVo<String> suspendOrActivateProcessInstanceById(String processInstanceId, Integer suspensionState) {ReturnVo<String> returnVo = null;if (suspensionState == 1) {runtimeService.suspendProcessInstanceById(processInstanceId);returnVo = new ReturnVo<>(ReturnCode.SUCCESS, "掛起成功");} else {runtimeService.activateProcessInstanceById(processInstanceId);returnVo = new ReturnVo<>(ReturnCode.SUCCESS, "激活成功");}return returnVo;}總結(jié)
以上是生活随笔為你收集整理的工作流实战_09_flowable 流程实例挂起与激活的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 怎样把间隔的几个commit整理成1个呢
- 下一篇: SpringBoot 使用unoconv