|
|
@@ -203,6 +203,10 @@ public class CompanyServiceImpl implements ICompanyService
|
|
|
company.setMiniAppMaster(GET_MINI_APP_STR.apply(0, miniApp));
|
|
|
company.setMiniAppServer(GET_MINI_APP_STR.apply(1, miniApp));
|
|
|
}
|
|
|
+ String redPackageMoney = redisCache.getCacheObject(FsConstants.COMPANY_MONEY_KEY+company.getCompanyId());
|
|
|
+ if(redPackageMoney!=null){
|
|
|
+ company.setRedPackageMoney(new BigDecimal(redPackageMoney));
|
|
|
+ }
|
|
|
return company;
|
|
|
}
|
|
|
|