Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
Springboot Plus
Commits
fb395113
Commit
fb395113
authored
Apr 24, 2018
by
李家智
Browse files
bug fix
parents
93127595
31899010
Changes
70
Hide whitespace changes
Inline
Side-by-side
admin-workflow/bin/src/main/java/com/ibeetl/starter/workflow/model/WfUser.class
0 → 100644
View file @
fb395113
File added
admin-workflow/bin/src/main/java/com/ibeetl/starter/workflow/model/WfUserSpec.class
0 → 100644
View file @
fb395113
File added
admin-workflow/bin/src/main/java/com/ibeetl/starter/workflow/service/WfNotifyService.class
0 → 100644
View file @
fb395113
File added
admin-workflow/bin/src/main/java/com/ibeetl/starter/workflow/service/WfTaskService.class
0 → 100644
View file @
fb395113
File added
admin-workflow/bin/src/main/java/com/ibeetl/starter/workflow/service/WfWorkflowManageService.class
0 → 100644
View file @
fb395113
File added
admin-workflow/bin/src/main/java/com/ibeetl/starter/workflow/service/impl/WfTaskServiceImpl.class
0 → 100644
View file @
fb395113
File added
admin-workflow/bin/src/main/resources/application.properties
0 → 100644
View file @
fb395113
spring.datasource.url
=
jdbc:mysql://127.0.0.1:3306/flowable?useUnicode=true&characterEncoding=UTF-8&serverTimezone=GMT%2B8&useSSL=false
spring.datasource.username
=
root
spring.datasource.password
=
123456
admin-workflow/bin/src/main/resources/processes/simple.bpmn20.xml
0 → 100644
View file @
fb395113
<?xml version="1.0" encoding="UTF-8"?>
<definitions
xmlns=
"http://www.omg.org/spec/BPMN/20100524/MODEL"
xmlns:activiti=
"http://activiti.org/bpmn"
targetNamespace=
"Examples"
>
<!-- 最简单流程,建议从此流程入手 -->
<process
id=
"simple"
name=
"简单流程"
activiti:processHandler=
"defaultTaskService"
>
<startEvent
id=
"theStart"
/>
<sequenceFlow
id=
"flow1"
sourceRef=
"theStart"
targetRef=
"fillForm"
/>
<userTask
id=
"fillForm"
name=
"手工填报"
>
<extensionElements>
<activiti:user
roleId=
"fill-role"
></activiti:user>
<activiti:toolbar
>
<activiti:button
type=
"general"
name=
"submit"
displayName=
"提交"
targetRef=
"agree"
strategy=
"role"
>
</activiti:button>
</activiti:toolbar>
<activiti:page
url=
""
></activiti:page>
</extensionElements>
</userTask>
<sequenceFlow
id=
"flow2"
sourceRef=
"fillForm"
targetRef=
"agree"
/>
<userTask
id=
"agree"
name=
"经理复核"
>
<extensionElements>
<activiti:user
roleId=
"manager"
></activiti:user>
<activiti:toolbar>
<activiti:button
type=
"general"
name=
"agree"
displayName=
"同意"
targetRef=
"theEnd"
></activiti:button>
<activiti:button
type=
"jump"
name=
"backLast"
displayName=
"退回"
targetRef=
"fillForm"
strategy=
"task_history"
enable=
"${true}"
>
<para
key=
"taskId"
value=
"fillForm"
></para>
</activiti:button>
</activiti:toolbar>
<activiti:page
url=
""
></activiti:page>
</extensionElements>
</userTask>
<sequenceFlow
id=
"flow3"
sourceRef=
"agree"
targetRef=
"theEnd"
/>
<endEvent
id=
"theEnd"
/>
</process>
</definitions>
\ No newline at end of file
admin-workflow/pom.xml
View file @
fb395113
...
...
@@ -19,7 +19,7 @@
<parent>
<groupId>
com.ibeetl
</groupId>
<artifactId>
admin-cloud
</artifactId>
<version>
1.1.
1
</version>
<version>
1.1.
2
</version>
</parent>
<dependencies>
<dependency>
...
...
pom.xml
View file @
fb395113
...
...
@@ -3,7 +3,7 @@
<modelVersion>
4.0.0
</modelVersion>
<groupId>
com.ibeetl
</groupId>
<artifactId>
admin
</artifactId>
<version>
1.1.
1
</version>
<version>
1.1.
2
</version>
<packaging>
pom
</packaging>
<properties>
<java.version>
1.8
</java.version>
...
...
@@ -11,14 +11,14 @@
</properties>
<modules>
<module>
admin-core
</module>
<module>
admin-console
</module>
<module>
admin-cloud
</module>
<module>
admin-console
</module>
<module>
admin-workflow
</module>
</modules>
<parent>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-parent
</artifactId>
<version>
2.0.
0
.RELEASE
</version>
<version>
2.0.
1
.RELEASE
</version>
</parent>
<!-- Add typical dependencies for a web application -->
<dependencies>
...
...
Prev
1
2
3
4
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment