Commit b24ba6cb authored by 吴泽佳's avatar 吴泽佳

size -> ChiefCount

parent c83ed8f6
...@@ -57,6 +57,6 @@ public class UserInfoNewChief { ...@@ -57,6 +57,6 @@ public class UserInfoNewChief {
private String headImageUrl; private String headImageUrl;
@ApiModelProperty(value = "首席投顾数量") @ApiModelProperty(value = "首席投顾数量")
private Long size; private Long chiefCount;
} }
\ No newline at end of file
...@@ -95,9 +95,9 @@ public class HomePageManager { ...@@ -95,9 +95,9 @@ public class HomePageManager {
// 查询首席投顾数量 // 查询首席投顾数量
CommonResp<Page<UserInfoNewChief>> pageCommonResp = feignClientForFatools.queryChiefFinancialAdviserList(1, 1); CommonResp<Page<UserInfoNewChief>> pageCommonResp = feignClientForFatools.queryChiefFinancialAdviserList(1, 1);
if (pageCommonResp.isSuccess()){ if (pageCommonResp.isSuccess()){
userInfoNew.getUserInfoNewChief().setSize(pageCommonResp.getData().getTotalSize()); userInfoNew.getUserInfoNewChief().setChiefCount(pageCommonResp.getData().getTotalSize());
} else { } else {
userInfoNew.getUserInfoNewChief().setSize(0L); userInfoNew.getUserInfoNewChief().setChiefCount(0L);
} }
......
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