Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
D
dex-basic-service-expand
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
INET-TWO
server
dex-basic-service-expand
Commits
b79d53bf
Commit
b79d53bf
authored
Sep 21, 2024
by
wangyangyang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
调整项目群查询
parent
f8a90857
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
ExtProgramServiceImpl.java
...de/dex/basic/core/service/impl/ExtProgramServiceImpl.java
+5
-5
No files found.
dex-basic-service-expand-core/src/main/java/com/yonde/dex/basic/core/service/impl/ExtProgramServiceImpl.java
View file @
b79d53bf
...
...
@@ -39,7 +39,7 @@ import org.springframework.data.domain.PageImpl;
**/
@Slf4j
@Service
(
ExtProgramServiceImpl
.
BEAN_NAME
)
@DexCacheConfig
(
cacheClazz
=
ExtProgramVO
.
class
,
close
=
false
,
cacheType
=
DexCacheTypeEnum
.
FULL_DATA
,
server
=
true
)
@DexCacheConfig
(
cacheClazz
=
ExtProgramVO
.
class
,
close
=
false
,
cacheType
=
DexCacheTypeEnum
.
FULL_DATA
,
server
=
true
)
public
class
ExtProgramServiceImpl
<
V
extends
ExtProgramVO
>
implements
ExtProgramService
<
V
>
{
...
...
@@ -71,11 +71,11 @@ public class ExtProgramServiceImpl<V extends ExtProgramVO> implements ExtProgram
List
<
DxContextProjectVO
>
children
=
extDxContextService
.
getSingleChild
(
targetId
);
//深度查询查不出来,以下方法查询也是有问题
// DxContextVO target = extDxContextService.getContextVoById(targetId);
DxContextVO
target
=
(
DxContextVO
)
extDxContextService
.
search
(
SearchUtil
.
buildQuery
(
"id"
,
SearchItem
.
Operator
.
EQ
,
targetId
)).
getContent
().
get
(
0
);
//
DxContextVO target = (DxContextVO) extDxContextService.search(SearchUtil.buildQuery("id", SearchItem.Operator.EQ, targetId)).getContent().get(0);
// DxContextVO target = (DxContextVO) contextProjectServiceShadow.get(targetId);
target
.
setChildren
(
children
);
linkVO
.
setTarget
(
target
);
//
linkVO.getTarget().setChildren(children);
//
target.setChildren(children);
//
linkVO.setTarget(target);
linkVO
.
getTarget
().
setChildren
(
children
);
}
v
.
setExtProgramProjectLinks
(
content
);
}
...
...
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