1
This commit is contained in:
23
internal/app/system/model/entity/sys_login_log.go
Normal file
23
internal/app/system/model/entity/sys_login_log.go
Normal file
@@ -0,0 +1,23 @@
|
||||
// =================================================================================
|
||||
// Code generated by GoFrame CLI tool. DO NOT EDIT. Created at 2022-03-08 11:31:48
|
||||
// =================================================================================
|
||||
|
||||
package entity
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
|
||||
// SysLoginLog is the golang structure for table sys_login_log.
|
||||
type SysLoginLog struct {
|
||||
InfoId int64 `json:"infoId" description:"访问ID"`
|
||||
LoginName string `json:"loginName" description:"登录账号"`
|
||||
Ipaddr string `json:"ipaddr" description:"登录IP地址"`
|
||||
LoginLocation string `json:"loginLocation" description:"登录地点"`
|
||||
Browser string `json:"browser" description:"浏览器类型"`
|
||||
Os string `json:"os" description:"操作系统"`
|
||||
Status int `json:"status" description:"登录状态(0成功 1失败)"`
|
||||
Msg string `json:"msg" description:"提示消息"`
|
||||
LoginTime *gtime.Time `json:"loginTime" description:"登录时间"`
|
||||
Module string `json:"module" description:"登录模块"`
|
||||
}
|
||||
Reference in New Issue
Block a user