Commit 3389ce0e by jianan

屏蔽龙虎榜3

parent 0e58f60f
......@@ -317,9 +317,9 @@ public class PractitionerServiceImpl implements com.yd.api.practitioner.service.
List<AclCustomerFortuneStatistics> list = responseVO.getRank();
for (AclCustomerFortuneStatistics item : list) {
item.setName("***");
item.setFyp("***");
item.setFyc("***");
item.setCount("***");
item.setFyp(999D);
item.setFyc(999D);
item.setCount(999);
}
}
return responseVO;
......
......@@ -9,9 +9,9 @@ public class AclCustomerFortuneStatistics implements Serializable {
private Long subordinateSystemId;//所属体系id
private String subordinateSystemName;//所属体系名称
private Long practitionerLevelId;
private String count;
private String fyp;
private String fyc;
private Integer count;
private Double fyp;
private Double fyc;
public Integer getRank() {
return rank;
......@@ -69,27 +69,27 @@ public class AclCustomerFortuneStatistics implements Serializable {
this.practitionerLevelId = practitionerLevelId;
}
public String getCount() {
public Integer getCount() {
return count;
}
public void setCount(String count) {
public void setCount(Integer count) {
this.count = count;
}
public String getFyp() {
public Double getFyp() {
return fyp;
}
public void setFyp(String fyp) {
public void setFyp(Double fyp) {
this.fyp = fyp;
}
public String getFyc() {
public Double getFyc() {
return fyc;
}
public void setFyc(String fyc) {
public void setFyc(Double fyc) {
this.fyc = fyc;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment