| | |
| | | viewJhyInfoVo.setAddress(jhyInfo.getAddress()); |
| | | String userId = jhyInfo.getUserId(); |
| | | AccountInfo accountInfo = accountMapper.selectOneByUserId(userId); |
| | | String collectScore = accountInfo.getCollectScore(); |
| | | BigDecimal bigDecimal = new BigDecimal(StrUtil.isEmpty(collectScore) ? "0" : collectScore).setScale( 2, BigDecimal.ROUND_DOWN ); |
| | | viewJhyInfoVo.setScore(bigDecimal); |
| | | if(ObjectUtil.isNotEmpty(accountInfo)){ |
| | | String collectScore = accountInfo.getCollectScore(); |
| | | BigDecimal bigDecimal = new BigDecimal(StrUtil.isEmpty(collectScore) ? "0" : collectScore).setScale( 2, BigDecimal.ROUND_DOWN ); |
| | | viewJhyInfoVo.setScore(bigDecimal); |
| | | |
| | | } |
| | | |
| | | viewJhyInfoVo.setCreateTime(jhyInfo.getCreatedTime().toString()); |
| | | |
| | | UserInfo userInfo = userMapper.selectByPrimaryKey(userId); |