Commit a47dd54d authored by 刘基明's avatar 刘基明

Merge remote-tracking branch 'origin/dev' into dev

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