修改方法添加try能看到报错

This commit is contained in:
sh
2026-04-10 12:38:20 +08:00
parent 5eed92dd35
commit 14870858f4

View File

@@ -902,7 +902,11 @@ public class SysLoginService
} }
//最后登录时间 //最后登录时间
updateParm.setLoginDate(new Date()); updateParm.setLoginDate(new Date());
appUserService.updateAppUser(updateParm); try {
appUserService.updateAppUser(updateParm);
}catch (Exception e){
e.printStackTrace();
}
} }
/** /**