国际化翻译

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

@@ -49,6 +49,8 @@ public class HistoryLogin extends JpaEntity implements Serializable{
@Column
String sessionId;
@Column
int category;
@Column
String userId;
@Column
String username;
@@ -112,6 +114,14 @@ public class HistoryLogin extends JpaEntity implements Serializable{
this.sessionId = sessionId;
}
public int getCategory() {
return category;
}
public void setCategory(int category) {
this.category = category;
}
public String getUserId() {
return userId;
}