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
dc27f5eb
Commit
dc27f5eb
authored
Jan 25, 2024
by
chenzhao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加 转办人参数
parent
f24328c7
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
0 deletions
+11
-0
JgChangeRegistrationUnitDto.java
...s/boot/module/jg/api/dto/JgChangeRegistrationUnitDto.java
+3
-0
JgChangeRegistrationUnit.java
...s/boot/module/jg/api/entity/JgChangeRegistrationUnit.java
+5
-0
JgChangeRegistrationUnitServiceImpl.java
...biz/service/impl/JgChangeRegistrationUnitServiceImpl.java
+3
-0
No files found.
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-api/src/main/java/com/yeejoin/amos/boot/module/jg/api/dto/JgChangeRegistrationUnitDto.java
View file @
dc27f5eb
...
...
@@ -145,4 +145,7 @@ public class JgChangeRegistrationUnitDto extends BaseDto {
@ApiModelProperty
(
value
=
"分类"
)
private
String
equList
;
@ApiModelProperty
(
value
=
"转办人"
)
private
String
transferToUserIds
;
}
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-api/src/main/java/com/yeejoin/amos/boot/module/jg/api/entity/JgChangeRegistrationUnit.java
View file @
dc27f5eb
...
...
@@ -230,4 +230,9 @@ public class JgChangeRegistrationUnit extends BaseEntity {
*/
@TableField
(
value
=
"next_execute_user_ids"
)
private
String
nextExecuteUserIds
;
/**
* 转办人
* */
@TableField
(
value
=
"transfer_to_user_ids"
)
private
String
transferToUserIds
;
}
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-biz/src/main/java/com/yeejoin/amos/boot/module/jg/biz/service/impl/JgChangeRegistrationUnitServiceImpl.java
View file @
dc27f5eb
...
...
@@ -527,6 +527,7 @@ public class JgChangeRegistrationUnitServiceImpl extends BaseService<JgChangeReg
ta
.
setPromoter
(
obj
.
getPromoter
());
ta
.
setNextExecuteUserIds
(
obj
.
getNextExecuteUserIds
());
ta
.
setSequenceNbr
(
obj
.
getSequenceNbr
());
ta
.
setNextTaskId
(
obj
.
getNextTaskId
());
dto
.
setModel
(
ta
);
// dto.setModel(obj);
dto
.
setFlowCreateDate
(
new
Date
());
...
...
@@ -1006,6 +1007,7 @@ public class JgChangeRegistrationUnitServiceImpl extends BaseService<JgChangeReg
obj
.
setPromoter
(
dto
.
getPromoter
());
obj
.
setNextExecuteUserIds
(
dto
.
getNextExecuteUserIds
());
obj
.
setSequenceNbr
(
dto
.
getSequenceNbr
());
obj
.
setNextTaskId
(
dto
.
getNextTaskId
());
taskModelDto
.
setModel
(
obj
);
commonServiceImpl
.
buildTaskModel
(
Collections
.
singletonList
(
taskModelDto
));
}
...
...
@@ -1082,6 +1084,7 @@ public class JgChangeRegistrationUnitServiceImpl extends BaseService<JgChangeReg
obj
.
setPromoter
(
jgChangeRegistrationName
.
getPromoter
());
obj
.
setNextExecuteUserIds
(
jgChangeRegistrationName
.
getNextExecuteUserIds
());
obj
.
setSequenceNbr
(
jgChangeRegistrationName
.
getSequenceNbr
());
obj
.
setNextTaskId
(
jgChangeRegistrationName
.
getNextTaskId
());
modelDto
.
setModel
(
obj
);
// 再插入新代办、数据待定
commonServiceImpl
.
buildTaskModel
(
Collections
.
singletonList
(
modelDto
));
...
...
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