国际化翻译

This commit is contained in:
shimingxy
2024-11-29 15:16:33 +08:00
parent 5a0465d079
commit 167ea5da82
9 changed files with 66 additions and 4 deletions

View File

@@ -32,6 +32,7 @@ public class LoginHistoryRepository {
insert into mxk_history_login
( id ,
sessionid ,
category ,
userid ,
username ,
displayname ,
@@ -49,7 +50,7 @@ public class LoginHistoryRepository {
application ,
sessionstatus ,
instid)
values( ? , ? , ? , ? , ? , ? , ? , ?, ? , ? , ? , ?, ?, ? , ? , ?, ? , ? , ?)
values( ? , ? , ? , ? , ? , ? , ? , ?, ? , ? , ? , ?, ?, ? , ? , ?, ? , ? , ? , ?)
""";
protected JdbcTemplate jdbcTemplate;
@@ -84,6 +85,7 @@ public class LoginHistoryRepository {
new Object[] {
historyLogin.getId(),
historyLogin.getSessionId(),
historyLogin.getCategory(),
historyLogin.getUserId(),
historyLogin.getUsername(),
historyLogin.getDisplayName(),
@@ -105,6 +107,7 @@ public class LoginHistoryRepository {
new int[] {
Types.VARCHAR,
Types.VARCHAR,
Types.INTEGER,
Types.VARCHAR,
Types.VARCHAR,
Types.VARCHAR,