feat: 登录日志(demo)

This commit is contained in:
dap
2024-09-12 09:51:59 +08:00
parent 3987c9e876
commit 45ed89c25f
8 changed files with 314 additions and 7 deletions

View File

@@ -0,0 +1,12 @@
export interface LoginLog {
infoId: string;
tenantId: string;
userName: string;
status: string;
ipaddr: string;
loginLocation: string;
browser: string;
os: string;
msg: string;
loginTime: string;
}