BUGFIX:注册用户登录没有邮件发送记录和登录记录

This commit is contained in:
2025-06-24 17:53:52 +08:00
parent f828983969
commit eaf90ab9e8
4 changed files with 21 additions and 4 deletions

View File

@@ -50,4 +50,12 @@ public class AccountLoginLog implements Serializable {
*/
private Date createDate;
public AccountLoginLog() {
}
public AccountLoginLog(Long accountId, String ip, Date createDate) {
this.accountId = accountId;
this.ip = ip;
this.createDate = createDate;
}
}