xuhy
2024-12-24 b41c5599f2547ce25cde20a0aed84f832b8a83eb
applet/src/main/java/com/jilongda/applet/service/impl/TAppUserServiceImpl.java
@@ -27,7 +27,7 @@
@Service
public class TAppUserServiceImpl extends ServiceImpl<TAppUserMapper, TAppUser> implements TAppUserService {
    @Override
    public void wxLogin(AppletUserDecodeData appletUserDecodeData) {
    public TAppUser wxLogin(AppletUserDecodeData appletUserDecodeData) {
        // 通过手机号查询用户,是否已存在手动导入用户,包含支付宝用户
        TAppUser appUser = this.getOne(Wrappers.lambdaQuery(TAppUser.class)
                .eq(TAppUser::getOpenId, appletUserDecodeData.getOpenId())
@@ -44,5 +44,6 @@
                throw new ServiceException("账号被冻结,请联系管理员");
            }
        }
        return appUser;
    }
}