Update2 TagService.java
This commit is contained in:
parent
dbd61ce80c
commit
95f70f425a
@ -23,13 +23,13 @@ public class TagService {
|
|||||||
return tags
|
return tags
|
||||||
.stream()
|
.stream()
|
||||||
.map(tag -> {
|
.map(tag -> {
|
||||||
if(tag.getId() != null){
|
if (tag.getId() != null) {
|
||||||
return getExistById(tag);
|
return getExistById(tag);
|
||||||
}else {
|
} else {
|
||||||
Tag existTag = isExistByName(tag.getTagName());
|
Tag existTag = isExistByName(tag.getTagName());
|
||||||
if(existTag != null){
|
if (existTag != null) {
|
||||||
return existTag;
|
return existTag;
|
||||||
}else{
|
} else {
|
||||||
return create(tag);
|
return create(tag);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user