mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-17 16:56:38 +08:00
10 lines
209 B
Go
10 lines
209 B
Go
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"`
|
|
}
|