This commit is contained in:
2025-10-30 00:40:19 +08:00
parent dd211d5285
commit 86b85e381b

View File

@ -59,10 +59,10 @@ public class GroupBuyCouponServiceImpl implements GroupBuyCouponService {
public SimpleUserInfoDTO getGroupBuyOrderInfoDto(String mobile) {
SimpleUserInfoDTO userInfoDTO = userInteg.getUInfoByMobile(mobile);
if(userInfoDTO==null){
throw new BizException("用户不存在");
throw new BizException("99001","用户不存在");
}
if(userInfoDTO.getAuthed()==0){
throw new BizException("用户未实名认证");
throw new BizException("99002","用户未实名认证");
}
return userInfoDTO;
}