日期类型调整为date

This commit is contained in:
MaxKey
2024-05-04 07:28:36 +08:00
parent 9ff95bf74a
commit ce09413c79
37 changed files with 425 additions and 355 deletions

View File

@@ -188,7 +188,7 @@ public class SessionManagerFactory implements SessionManager{
history.setUserId(rs.getString(3));
history.setUsername(rs.getString(4));
history.setDisplayName(rs.getString(5));
history.setLoginTime(rs.getString(6));
history.setLoginTime(rs.getTimestamp(6));
return history;
}
}