File tree Expand file tree Collapse file tree 4 files changed +57
-7
lines changed
springboot-starter-data-authorization
springboot-starter-data-fast Expand file tree Collapse file tree 4 files changed +57
-7
lines changed Original file line number Diff line number Diff line change 1+ # 流程事件触发机制
2+
3+ * 发起流程
4+ 事件: CREATE TODO SAVE
5+ * 保存流程
6+ 事件: SAVE
7+ * 提交流程
8+ 事件: PASS TODO(下一个节点记录数据)
9+ * 驳回流程
10+ 事件: REJECT TODO(下一个节点记录数据)
11+ * 撤回流程
12+ 事件: RECALL
13+ * 删除流程
14+ 事件: DELETE
15+ * 作废流程
16+ 事件: VOIDED
17+ * 退回流程
18+ 事件:BACK
19+ * 流程结束
20+ 事件: FINISH
21+ * 转办流程
22+ 事件:TRANSFER TODO(下一个节点记录数据)
23+ * 唤醒流程
24+ 事件: TODO
25+ * 催办流程
26+ 事件: URGE 当前审批人
27+ * 延期流程
28+ 事件: 未发送事件
29+
30+ ---------------------
31+ 自定义事件:是前端自己触法的逻辑
32+ 自定义接口:是执行后端按钮配置的脚本
33+
34+ 在开始节点点击任何按钮的时候,若流程不存在则会先执行流程的创建,然后再执行对应的按钮操作。
35+
36+
Original file line number Diff line number Diff line change 378378 </plugin >
379379
380380
381+ <!-- <plugin>-->
382+ <!-- <groupId>org.sonatype.plugins</groupId>-->
383+ <!-- <artifactId>nexus-staging-maven-plugin</artifactId>-->
384+ <!-- <version>1.6.13</version>-->
385+ <!-- <extensions>true</extensions>-->
386+ <!-- <configuration>-->
387+ <!-- <serverId>ossrh</serverId>-->
388+ <!-- <nexusUrl>https://oss.sonatype.org/</nexusUrl>-->
389+ <!-- <autoReleaseAfterClose>true</autoReleaseAfterClose>-->
390+ <!-- </configuration>-->
391+ <!-- </plugin>-->
392+
381393 <plugin >
382- <groupId >org.sonatype.plugins </groupId >
383- <artifactId >nexus-staging -maven-plugin</artifactId >
384- <version >1.6.13 </version >
394+ <groupId >org.sonatype.central </groupId >
395+ <artifactId >central-publishing -maven-plugin</artifactId >
396+ <version >0.8.0 </version >
385397 <extensions >true</extensions >
386398 <configuration >
387- <serverId >ossrh</ serverId >
388- <nexusUrl >https://oss.sonatype.org/</ nexusUrl >
389- <autoReleaseAfterClose >true</ autoReleaseAfterClose >
399+ <publishingServerId >central</ publishingServerId >
400+ <autoPublish >true</ autoPublish >
401+ <waitUntil >published</ waitUntil >
390402 </configuration >
391403 </plugin >
392404
393-
394405 <plugin >
395406 <groupId >org.apache.maven.plugins</groupId >
396407 <artifactId >maven-javadoc-plugin</artifactId >
Original file line number Diff line number Diff line change 99 <version >2.10.8</version >
1010 </parent >
1111
12+ <name >springboot-starter-data-authorization</name >
1213 <artifactId >springboot-starter-data-authorization</artifactId >
1314 <description >springboot-starter-data-authorization project for Spring Boot</description >
1415
Original file line number Diff line number Diff line change 99 </parent >
1010 <modelVersion >4.0.0</modelVersion >
1111
12+ <name >springboot-starter-data-fast</name >
1213 <artifactId >springboot-starter-data-fast</artifactId >
14+ <description >springboot-starter-data-fast project for Spring Boot</description >
1315
1416 <properties >
1517 <java .version>8</java .version>
You can’t perform that action at this time.
0 commit comments