Commit 8a1ce175 authored by 吴泽佳's avatar 吴泽佳

机构成立时间非0判断

parent 093ec286
...@@ -112,7 +112,7 @@ public class HomePageManager { ...@@ -112,7 +112,7 @@ public class HomePageManager {
CommonResp<FundCompanySimpleVO> fundCompanyInfoSimple = feignForFund.getFundCompanyInfoSimple(userInfoNew.getUserInfoNewOrg().getRelationFundCompanyId()); CommonResp<FundCompanySimpleVO> fundCompanyInfoSimple = feignForFund.getFundCompanyInfoSimple(userInfoNew.getUserInfoNewOrg().getRelationFundCompanyId());
if (fundCompanyInfoSimple.isSuccess()) { if (fundCompanyInfoSimple.isSuccess()) {
FundCompanySimpleVO data = fundCompanyInfoSimple.getData(); FundCompanySimpleVO data = fundCompanyInfoSimple.getData();
userInfoNew.setFounded(data.getEstablishDate()); userInfoNew.setFounded(data.getEstablishDate() > 0 ? data.getEstablishDate() : null);
userInfoNew.setRecordNumber(data.getRegisterNumber()); userInfoNew.setRecordNumber(data.getRegisterNumber());
} }
// 设置 基金数 // 设置 基金数
......
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