Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Sign in
Toggle navigation
T
tamp_fund
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
周鹏
tamp_fund
Commits
436c6194
Commit
436c6194
authored
Feb 26, 2021
by
zp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add
parent
ccb60006
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
ProductPrivateServiceImpl.java
...om/tanpu/fund/service/impl/ProductPrivateServiceImpl.java
+5
-2
No files found.
src/main/java/com/tanpu/fund/service/impl/ProductPrivateServiceImpl.java
View file @
436c6194
...
@@ -186,7 +186,7 @@ public class ProductPrivateServiceImpl implements ProductPrivateService, Constan
...
@@ -186,7 +186,7 @@ public class ProductPrivateServiceImpl implements ProductPrivateService, Constan
@Override
@Override
public
List
<
FundManagerVO
>
getFundManager
(
String
id
)
{
public
List
<
FundManagerVO
>
getFundManager
(
String
id
)
{
FundManagerMappingExample
example
=
new
FundManagerMappingExample
();
FundManagerMappingExample
example
=
new
FundManagerMappingExample
();
example
.
createCriteria
().
andFundIdEqualTo
(
id
).
and
IsvisibleEqualTo
(
ONE_NUM
).
and
DeleteTagEqualTo
(
ZERO_NUM
);
example
.
createCriteria
().
andFundIdEqualTo
(
id
).
andDeleteTagEqualTo
(
ZERO_NUM
);
example
.
setOrderByClause
(
"update_time desc"
);
example
.
setOrderByClause
(
"update_time desc"
);
List
<
String
>
list
=
this
.
fundManagerMappingMapper
.
selectByExample
(
example
).
stream
()
List
<
String
>
list
=
this
.
fundManagerMappingMapper
.
selectByExample
(
example
).
stream
()
...
@@ -203,7 +203,10 @@ public class ProductPrivateServiceImpl implements ProductPrivateService, Constan
...
@@ -203,7 +203,10 @@ public class ProductPrivateServiceImpl implements ProductPrivateService, Constan
.
collect
(
Collectors
.
toList
());
.
collect
(
Collectors
.
toList
());
FundCountExample
example2
=
new
FundCountExample
();
FundCountExample
example2
=
new
FundCountExample
();
example2
.
createCriteria
().
andFundIdIn
(
fundIds
).
andDeleteTagEqualTo
(
ZERO_NUM
);
example2
.
createCriteria
()
.
andFundIdIn
(
fundIds
)
.
andRetIncepIsNotNull
()
.
andDeleteTagEqualTo
(
ZERO_NUM
);
example2
.
setOrderByClause
(
"ret_incep desc"
);
example2
.
setOrderByClause
(
"ret_incep desc"
);
List
<
FundCount
>
fundCounts
=
this
.
fundCountMapper
.
selectByExample
(
example2
);
List
<
FundCount
>
fundCounts
=
this
.
fundCountMapper
.
selectByExample
(
example2
);
Map
<
String
,
FundCount
>
fundCountMap
=
fundCounts
.
stream
()
Map
<
String
,
FundCount
>
fundCountMap
=
fundCounts
.
stream
()
...
...
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