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 378
378
</plugin >
379
379
380
380
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
+
381
393
<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 >
385
397
<extensions >true</extensions >
386
398
<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 >
390
402
</configuration >
391
403
</plugin >
392
404
393
-
394
405
<plugin >
395
406
<groupId >org.apache.maven.plugins</groupId >
396
407
<artifactId >maven-javadoc-plugin</artifactId >
Original file line number Diff line number Diff line change 9
9
<version >2.10.8</version >
10
10
</parent >
11
11
12
+ <name >springboot-starter-data-authorization</name >
12
13
<artifactId >springboot-starter-data-authorization</artifactId >
13
14
<description >springboot-starter-data-authorization project for Spring Boot</description >
14
15
Original file line number Diff line number Diff line change 9
9
</parent >
10
10
<modelVersion >4.0.0</modelVersion >
11
11
12
+ <name >springboot-starter-data-fast</name >
12
13
<artifactId >springboot-starter-data-fast</artifactId >
14
+ <description >springboot-starter-data-fast project for Spring Boot</description >
13
15
14
16
<properties >
15
17
<java .version>8</java .version>
You can’t perform that action at this time.
0 commit comments