|
|
@ -205,6 +205,7 @@ public class UserBadgeServiceImpl implements UserBadgeService { |
|
|
|
|
|
|
|
/** |
|
|
|
* @Description 个人中心-获取徽章认证页面详情 |
|
|
|
* 先判断 userId存在不,不存在从tokenDto获取【工作端和居民端合用一个接口】 |
|
|
|
* @Param tokenDto |
|
|
|
* @Param certificationDetailFormDTO |
|
|
|
* @author zxc |
|
|
@ -212,7 +213,9 @@ public class UserBadgeServiceImpl implements UserBadgeService { |
|
|
|
*/ |
|
|
|
@Override |
|
|
|
public CertificationDetailResultDTO certificationDetail(TokenDto tokenDto, CertificationDetailFormDTO certificationDetailFormDTO) { |
|
|
|
certificationDetailFormDTO.setUserId(tokenDto.getUserId()); |
|
|
|
if (StringUtils.isEmpty(certificationDetailFormDTO.getUserId())){ |
|
|
|
certificationDetailFormDTO.setUserId(tokenDto.getUserId()); |
|
|
|
} |
|
|
|
return userBadgeDao.selectBadgeAuthRecord(certificationDetailFormDTO.getUserId(), certificationDetailFormDTO.getBadgeId()); |
|
|
|
} |
|
|
|
|
|
|
|