feat(auth): 新增登录日志模块并记录登录失败
- 新增 SystemLoginLog 实体、Mapper、Service 及 XML 配置 - UserController 登录接口补充异常捕获与失败日志记录 - 删除旧压缩日志,新增最新日志文件 - 补充 AGENTS.md 使用说明文档
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
package com.yupi.springbootinit.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.yupi.springbootinit.model.entity.SystemLoginLog;
|
||||
|
||||
/*
|
||||
* @author: ziin
|
||||
* @date: 2026/3/10 11:32
|
||||
*/
|
||||
|
||||
public interface SystemLoginLogMapper extends BaseMapper<SystemLoginLog> {
|
||||
}
|
||||
Reference in New Issue
Block a user