Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yd-backend
Overview
Overview
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
AutogeneralShanghai
yd-backend
Commits
ada67c3d
Commit
ada67c3d
authored
Sep 08, 2021
by
jianan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
屏蔽龙虎榜
parent
0c880cb7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
12 deletions
+21
-12
yd-api/src/main/java/com/yd/api/practitioner/service/impl/PractitionerServiceImpl.java
+12
-3
yd-api/src/main/java/com/yd/api/practitioner/vo/rank/AclCustomerFortuneStatistics.java
+9
-9
No files found.
yd-api/src/main/java/com/yd/api/practitioner/service/impl/PractitionerServiceImpl.java
View file @
ada67c3d
...
@@ -313,6 +313,15 @@ public class PractitionerServiceImpl implements com.yd.api.practitioner.service.
...
@@ -313,6 +313,15 @@ public class PractitionerServiceImpl implements com.yd.api.practitioner.service.
String
[]
param
=
{
"mobileNo"
};
String
[]
param
=
{
"mobileNo"
};
responseVO
.
setCommonResult
(
new
CommonResult
(
false
,
ZHBErrorConfig
.
getErrorInfo
(
"610001"
,
param
)));
responseVO
.
setCommonResult
(
new
CommonResult
(
false
,
ZHBErrorConfig
.
getErrorInfo
(
"610001"
,
param
)));
}
}
if
(
"1"
.
equals
(
requestVO
.
getIsPersonal
()))
{
List
<
AclCustomerFortuneStatistics
>
list
=
responseVO
.
getRank
();
for
(
AclCustomerFortuneStatistics
item
:
list
)
{
item
.
setName
(
"***"
);
item
.
setFyp
(
"***"
);
item
.
setFyc
(
"***"
);
item
.
setCount
(
"***"
);
}
}
return
responseVO
;
return
responseVO
;
}
}
...
@@ -3000,9 +3009,9 @@ public class PractitionerServiceImpl implements com.yd.api.practitioner.service.
...
@@ -3000,9 +3009,9 @@ public class PractitionerServiceImpl implements com.yd.api.practitioner.service.
memberInfo
.
setLevelName
(
levelInfoNameMap
.
get
(
practitionerLevelId
));
memberInfo
.
setLevelName
(
levelInfoNameMap
.
get
(
practitionerLevelId
));
if
(
customerFortuneStatisticsMap
.
containsKey
(
practitionerIdForMember
)){
if
(
customerFortuneStatisticsMap
.
containsKey
(
practitionerIdForMember
)){
customerFortuneStatisticsItem
=
customerFortuneStatisticsMap
.
get
(
practitionerIdForMember
);
customerFortuneStatisticsItem
=
customerFortuneStatisticsMap
.
get
(
practitionerIdForMember
);
fyc
=
customerFortuneStatisticsItem
.
getFyc
(
);
fyc
=
Double
.
valueOf
(
customerFortuneStatisticsItem
.
getFyc
()
);
fyp
=
customerFortuneStatisticsItem
.
getFyp
(
);
fyp
=
Double
.
valueOf
(
customerFortuneStatisticsItem
.
getFyp
()
);
count
=
customerFortuneStatisticsItem
.
getCount
(
);
count
=
Integer
.
valueOf
(
customerFortuneStatisticsItem
.
getCount
()
);
}
}
memberInfo
.
setFyc
(
CommonUtil
.
doubleFormat
(
fyc
,
2
));
memberInfo
.
setFyc
(
CommonUtil
.
doubleFormat
(
fyc
,
2
));
memberInfo
.
setFyp
(
CommonUtil
.
doubleFormat
(
fyp
,
2
));
memberInfo
.
setFyp
(
CommonUtil
.
doubleFormat
(
fyp
,
2
));
...
...
yd-api/src/main/java/com/yd/api/practitioner/vo/rank/AclCustomerFortuneStatistics.java
View file @
ada67c3d
...
@@ -9,9 +9,9 @@ public class AclCustomerFortuneStatistics implements Serializable {
...
@@ -9,9 +9,9 @@ public class AclCustomerFortuneStatistics implements Serializable {
private
Long
subordinateSystemId
;
//所属体系id
private
Long
subordinateSystemId
;
//所属体系id
private
String
subordinateSystemName
;
//所属体系名称
private
String
subordinateSystemName
;
//所属体系名称
private
Long
practitionerLevelId
;
private
Long
practitionerLevelId
;
private
Integer
count
;
private
String
count
;
private
Double
fyp
;
private
String
fyp
;
private
Double
fyc
;
private
String
fyc
;
public
Integer
getRank
()
{
public
Integer
getRank
()
{
return
rank
;
return
rank
;
...
@@ -69,27 +69,27 @@ public class AclCustomerFortuneStatistics implements Serializable {
...
@@ -69,27 +69,27 @@ public class AclCustomerFortuneStatistics implements Serializable {
this
.
practitionerLevelId
=
practitionerLevelId
;
this
.
practitionerLevelId
=
practitionerLevelId
;
}
}
public
Integer
getCount
()
{
public
String
getCount
()
{
return
count
;
return
count
;
}
}
public
void
setCount
(
Integer
count
)
{
public
void
setCount
(
String
count
)
{
this
.
count
=
count
;
this
.
count
=
count
;
}
}
public
Double
getFyp
()
{
public
String
getFyp
()
{
return
fyp
;
return
fyp
;
}
}
public
void
setFyp
(
Double
fyp
)
{
public
void
setFyp
(
String
fyp
)
{
this
.
fyp
=
fyp
;
this
.
fyp
=
fyp
;
}
}
public
Double
getFyc
()
{
public
String
getFyc
()
{
return
fyc
;
return
fyc
;
}
}
public
void
setFyc
(
Double
fyc
)
{
public
void
setFyc
(
String
fyc
)
{
this
.
fyc
=
fyc
;
this
.
fyc
=
fyc
;
}
}
...
...
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