Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-biz
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
项目统一框架
amos-boot-biz
Commits
7e3728d8
Commit
7e3728d8
authored
Oct 10, 2022
by
zhangyingbin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
完善基本流程
parent
d939b7fc
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
IProjectInitiationService.java
...oot/module/ugp/api/service/IProjectInitiationService.java
+1
-1
ProjectInitiationController.java
...odule/ugp/biz/controller/ProjectInitiationController.java
+1
-1
ProjectInitiationServiceImpl.java
...le/ugp/biz/service/impl/ProjectInitiationServiceImpl.java
+2
-2
No files found.
amos-boot-system-ugp/amos-boot-module-ugp-api/src/main/java/com/yeejoin/amos/boot/module/ugp/api/service/IProjectInitiationService.java
View file @
7e3728d8
...
...
@@ -9,7 +9,7 @@ public interface IProjectInitiationService {
* @return 返回instanceId ,加入项目信息表中
* @throws Exception
*/
String
start
();
String
start
(
Object
objectd
);
/**
* 执行流程节点,并记录日志
...
...
amos-boot-system-ugp/amos-boot-module-ugp-biz/src/main/java/com/yeejoin/amos/boot/module/ugp/biz/controller/ProjectInitiationController.java
View file @
7e3728d8
...
...
@@ -24,7 +24,7 @@ public class ProjectInitiationController {
@GetMapping
(
value
=
"/start"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"流程启动"
,
notes
=
"流程启动"
)
public
ResponseModel
<
String
>
start
()
throws
Exception
{
return
ResponseHelper
.
buildResponse
(
projectInitiationServiceImpl
.
start
());
return
ResponseHelper
.
buildResponse
(
projectInitiationServiceImpl
.
start
(
new
Object
()
));
}
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
,
needAuth
=
false
)
...
...
amos-boot-system-ugp/amos-boot-module-ugp-biz/src/main/java/com/yeejoin/amos/boot/module/ugp/biz/service/impl/ProjectInitiationServiceImpl.java
View file @
7e3728d8
...
...
@@ -70,7 +70,7 @@ public class ProjectInitiationServiceImpl extends BaseService<ProjectInitiationD
@Override
@Transactional
(
rollbackFor
=
Exception
.
class
)
public
String
start
()
{
public
String
start
(
Object
objectd
)
{
String
instanceId
=
null
;
try
{
ActWorkflowStartDTO
dto
=
new
ActWorkflowStartDTO
();
...
...
@@ -92,7 +92,7 @@ public class ProjectInitiationServiceImpl extends BaseService<ProjectInitiationD
option
=
"1"
;
}
//执行审核流程
execute
(
instanceId
,
new
JSONObject
()
,
option
);
execute
(
instanceId
,
objectd
,
option
);
return
instanceId
;
}
...
...
Write
Preview
Markdown
is supported
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