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
81bf8cf5
Commit
81bf8cf5
authored
Apr 01, 2022
by
tangwei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改bug
parent
4eded1bb
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
5 deletions
+12
-5
SourceFileServiceImpl.java
...module/common/biz/service/impl/SourceFileServiceImpl.java
+12
-5
No files found.
amos-boot-module/amos-boot-module-biz/amos-boot-module-common-biz/src/main/java/com/yeejoin/amos/boot/module/common/biz/service/impl/SourceFileServiceImpl.java
View file @
81bf8cf5
...
...
@@ -76,11 +76,18 @@ public class SourceFileServiceImpl extends BaseService<SourceFileDto, SourceFile
if
(
CollectionUtils
.
isEmpty
(
sourceFiles
))
{
return
new
ArrayList
<>();
}
sourceFiles
.
forEach
(
s
->
{
s
.
setSourceId
(
sourceId
);
});
boolean
flag
=
this
.
saveOrUpdateBatch
(
sourceFiles
);
return
flag
?
sourceFiles
:
Collections
.
EMPTY_LIST
;
// sourceFiles.forEach(s -> {
// s.setSourceId(sourceId);
// this.saveOrUpdate(s);
// });
boolean
flag
=
false
;
for
(
SourceFile
sourceFile
:
sourceFiles
)
{
sourceFile
.
setSourceId
(
sourceId
);
flag
=
this
.
saveOrUpdate
(
sourceFile
);
}
// boolean flag = this.saveOrUpdate(sourceFiles);
return
false
?
sourceFiles
:
Collections
.
EMPTY_LIST
;
}
/**
...
...
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