工作流实战_05_flowable 流程定义的挂起与激活
生活随笔
收集整理的這篇文章主要介紹了
工作流实战_05_flowable 流程定义的挂起与激活
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
由于群里有些朋友對(duì)這個(gè)flowable還不是 很熟悉,在群里的小伙伴的建議下,師傅(小學(xué)生05101)制作一個(gè)開源的項(xiàng)目源碼,一共大家學(xué)習(xí)和交流,希望對(duì)有幫助,少走彎路 如果有不懂的問題可以入群: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 suspendOrActivateProcessDefinitionById(String processDefinitionId,int suspensionState) {ReturnVo returnVo = null;if (suspensionState == 1){repositoryService.suspendProcessDefinitionById(processDefinitionId, true, null);returnVo = new ReturnVo(ReturnCode.SUCCESS,"掛起成功");}else {repositoryService.activateProcessDefinitionById(processDefinitionId, true, null);returnVo = new ReturnVo(ReturnCode.SUCCESS,"激活成功");}return returnVo;}總結(jié)
以上是生活随笔為你收集整理的工作流实战_05_flowable 流程定义的挂起与激活的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 3行代码实现ftp 上传、下载、删除操作
- 下一篇: 第7篇:Flowable-Modeler