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
0d959728
Commit
0d959728
authored
Feb 25, 2021
by
张亚辉
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
基金详情
parent
73c19194
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
ProductServiceImpl.java
.../java/com/tanpu/fund/service/impl/ProductServiceImpl.java
+8
-8
No files found.
src/main/java/com/tanpu/fund/service/impl/ProductServiceImpl.java
View file @
0d959728
...
@@ -1604,14 +1604,14 @@ public class ProductServiceImpl implements ProductService, Constant {
...
@@ -1604,14 +1604,14 @@ public class ProductServiceImpl implements ProductService, Constant {
private
ArrayList
<
TrackRecordVO
>
getPrivateFundTrackRecordVOS
(
IfaImportedFundCount
fundCount
)
{
private
ArrayList
<
TrackRecordVO
>
getPrivateFundTrackRecordVOS
(
IfaImportedFundCount
fundCount
)
{
return
Lists
.
newArrayList
(
return
Lists
.
newArrayList
(
new
TrackRecordVO
(
"近三个月"
,
multiply100
(
fundCount
.
getRet3m
()),
multiply100
(
fundCount
.
getRet3mBm1
())),
new
TrackRecordVO
(
"近三个月"
,
multiply100
(
fundCount
.
getRet3m
()),
multiply100
(
fundCount
.
getRet3mBm1
())
,
fundCount
.
getEndDate
()
==
null
?
null
:
fundCount
.
getEndDate
().
getTime
()
),
new
TrackRecordVO
(
"近半年"
,
multiply100
(
fundCount
.
getRet6m
()),
multiply100
(
fundCount
.
getRet6mBm1
())),
new
TrackRecordVO
(
"近半年"
,
multiply100
(
fundCount
.
getRet6m
()),
multiply100
(
fundCount
.
getRet6mBm1
())
,
fundCount
.
getEndDate
()
==
null
?
null
:
fundCount
.
getEndDate
().
getTime
()
),
new
TrackRecordVO
(
"近一年"
,
multiply100
(
fundCount
.
getRet1y
()),
multiply100
(
fundCount
.
getRet1yBm1
())),
new
TrackRecordVO
(
"近一年"
,
multiply100
(
fundCount
.
getRet1y
()),
multiply100
(
fundCount
.
getRet1yBm1
())
,
fundCount
.
getEndDate
()
==
null
?
null
:
fundCount
.
getEndDate
().
getTime
()
),
new
TrackRecordVO
(
"近二年"
,
multiply100
(
fundCount
.
getRet2y
()),
multiply100
(
fundCount
.
getRet2yBm1
())),
new
TrackRecordVO
(
"近二年"
,
multiply100
(
fundCount
.
getRet2y
()),
multiply100
(
fundCount
.
getRet2yBm1
())
,
fundCount
.
getEndDate
()
==
null
?
null
:
fundCount
.
getEndDate
().
getTime
()
),
new
TrackRecordVO
(
"近三年"
,
multiply100
(
fundCount
.
getRet3y
()),
multiply100
(
fundCount
.
getRet3yBm1
())),
new
TrackRecordVO
(
"近三年"
,
multiply100
(
fundCount
.
getRet3y
()),
multiply100
(
fundCount
.
getRet3yBm1
())
,
fundCount
.
getEndDate
()
==
null
?
null
:
fundCount
.
getEndDate
().
getTime
()
),
new
TrackRecordVO
(
"近四年"
,
multiply100
(
fundCount
.
getRet4y
()),
multiply100
(
fundCount
.
getRet4yBm1
())),
new
TrackRecordVO
(
"近四年"
,
multiply100
(
fundCount
.
getRet4y
()),
multiply100
(
fundCount
.
getRet4yBm1
())
,
fundCount
.
getEndDate
()
==
null
?
null
:
fundCount
.
getEndDate
().
getTime
()
),
new
TrackRecordVO
(
"近五年"
,
multiply100
(
fundCount
.
getRet5y
()),
multiply100
(
fundCount
.
getRet5yBm1
())),
new
TrackRecordVO
(
"近五年"
,
multiply100
(
fundCount
.
getRet5y
()),
multiply100
(
fundCount
.
getRet5yBm1
())
,
fundCount
.
getEndDate
()
==
null
?
null
:
fundCount
.
getEndDate
().
getTime
()
),
new
TrackRecordVO
(
"成立以来"
,
multiply100
(
fundCount
.
getRetIncep
()),
multiply100
(
fundCount
.
getRetIncepBm1
())));
new
TrackRecordVO
(
"成立以来"
,
multiply100
(
fundCount
.
getRetIncep
()),
multiply100
(
fundCount
.
getRetIncepBm1
())
,
fundCount
.
getEndDate
()
==
null
?
null
:
fundCount
.
getEndDate
().
getTime
()
));
}
}
...
...
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