添加根据身份证,查询个人信息,用于注册用

This commit is contained in:
sh
2026-04-21 18:52:27 +08:00
parent b635e47ee6
commit 616110b19f
5 changed files with 31 additions and 0 deletions

View File

@@ -97,4 +97,6 @@ public interface IAppUserService
public AppUser selectAppuserByIdcard(String idCard,String userType);
public void updateAppUserWgyEncrypt();
public AppUser getAppUserBase(String idCard);
}

View File

@@ -1099,4 +1099,8 @@ public class AppUserServiceImpl extends ServiceImpl<AppUserMapper,AppUser> imple
}
}
}
public AppUser getAppUserBase(String idCard){
return appUserMapper.getAppUserBase(idCard);
}
}