Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yanxuan-qc-change-system
Overview
Overview
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
yx-qc-change-flow
yanxuan-qc-change-system
Commits
0dd6ff3f
Commit
0dd6ff3f
authored
Nov 18, 2025
by
王志超
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 行动项绑定工单系统
parent
4b420ced
Pipeline
#85777
passed with stages
in 1 minute 15 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
ChangeFlowBiz.java
...om/netease/mail/yanxuan/change/biz/biz/ChangeFlowBiz.java
+3
-1
ChangeExecRecord.java
...ease/mail/yanxuan/change/dal/entity/ChangeExecRecord.java
+1
-1
No files found.
yanxuan-qc-change-system-biz/src/main/java/com/netease/mail/yanxuan/change/biz/biz/ChangeFlowBiz.java
View file @
0dd6ff3f
...
...
@@ -22,6 +22,7 @@ import org.apache.commons.lang3.StringUtils;
import
org.apache.poi.ss.usermodel.Workbook
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Component
;
import
org.springframework.transaction.annotation.Transactional
;
import
org.springframework.util.Assert
;
import
com.alibaba.fastjson.JSON
;
...
...
@@ -158,6 +159,7 @@ public class ChangeFlowBiz {
@Autowired
private
BuildAndSendEmail
buildAndSendEmail
;
@Transactional
public
String
createAndSubmit
(
ChangeFlowCreateReq
changeFlowCreateReq
)
{
String
uid
=
RequestLocalBean
.
getUid
();
String
name
=
RequestLocalBean
.
getName
();
...
...
@@ -344,7 +346,7 @@ public class ChangeFlowBiz {
changeRecord
.
getId
(),
subFlowId
,
subNodeId
);
// 更新执行记录,绑定子流程
execRecord
.
setSubFlowId
(
Long
.
parseLong
(
subFlowId
)
);
execRecord
.
setSubFlowId
(
subFlowId
);
execRecord
.
setSubFlowNode
(
subNodeId
);
changeFlowExecService
.
update
(
execRecord
);
}
...
...
yanxuan-qc-change-system-dal/src/main/java/com/netease/mail/yanxuan/change/dal/entity/ChangeExecRecord.java
View file @
0dd6ff3f
...
...
@@ -86,7 +86,7 @@ public class ChangeExecRecord {
/**
* 子流程工单ID
*/
private
Lo
ng
subFlowId
;
private
Stri
ng
subFlowId
;
/**
* 子流程当前节点
...
...
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