This commit is contained in:
MaxKey
2021-11-06 20:09:39 +08:00
parent d4aced9886
commit 44a721452d
16 changed files with 127 additions and 58 deletions

View File

@@ -154,7 +154,7 @@ public class UserInfoService extends JpaBaseService<UserInfo> {
if(userInfo.getStatus() != ConstantsStatus.ACTIVE) {
if(accountsService==null) {
accountsService =
(AccountsService)WebContext.getBean("accountsService");
WebContext.getBean("accountsService",AccountsService.class);
}
Accounts queryAcount =new Accounts();
queryAcount.setUserId(userInfo.getId());