refactor: user login log list for admin is ready

This commit is contained in:
RockYang
2023-06-21 06:53:41 +08:00
parent feff1684c4
commit 0e6606e469
9 changed files with 170 additions and 26 deletions

View File

@@ -0,0 +1,9 @@
package vo
type UserLoginLog struct {
BaseVo
UserId uint `json:"user_id"`
Username string `json:"username"`
LoginIp string `json:"login_ip"`
LoginAddress string `json:"login_address"`
}