26 lines
975 B
Go
26 lines
975 B
Go
|
|
// =================================================================================
|
|||
|
|
// Code generated by GoFrame CLI tool. DO NOT EDIT. Created at 2022-03-08 11:31:48
|
|||
|
|
// =================================================================================
|
|||
|
|
|
|||
|
|
package do
|
|||
|
|
|
|||
|
|
import (
|
|||
|
|
"github.com/gogf/gf/v2/frame/g"
|
|||
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|||
|
|
)
|
|||
|
|
|
|||
|
|
// SysLoginLog is the golang structure of table sys_login_log for DAO operations like Where/Data.
|
|||
|
|
type SysLoginLog struct {
|
|||
|
|
g.Meta `orm:"table:sys_login_log, do:true"`
|
|||
|
|
InfoId interface{} // 访问ID
|
|||
|
|
LoginName interface{} // 登录账号
|
|||
|
|
Ipaddr interface{} // 登录IP地址
|
|||
|
|
LoginLocation interface{} // 登录地点
|
|||
|
|
Browser interface{} // 浏览器类型
|
|||
|
|
Os interface{} // 操作系统
|
|||
|
|
Status interface{} // 登录状态(0成功 1失败)
|
|||
|
|
Msg interface{} // 提示消息
|
|||
|
|
LoginTime *gtime.Time // 登录时间
|
|||
|
|
Module interface{} // 登录模块
|
|||
|
|
}
|