| 1234567891011121314151617181920212223 |
- // ==========================================================================
- // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY.
- // ==========================================================================
- package internal
- import (
- "github.com/gogf/gf/os/gtime"
- )
- // SysLoginLog is the golang structure for table sys_login_log.
- type SysLoginLog struct {
- InfoId int64 `orm:"info_id,primary" json:"infoId"` // 访问ID
- LoginName string `orm:"login_name" json:"loginName"` // 登录账号
- Ipaddr string `orm:"ipaddr" json:"ipaddr"` // 登录IP地址
- LoginLocation string `orm:"login_location" json:"loginLocation"` // 登录地点
- Browser string `orm:"browser" json:"browser"` // 浏览器类型
- Os string `orm:"os" json:"os"` // 操作系统
- Status int `orm:"status" json:"status"` // 登录状态(0成功 1失败)
- Msg string `orm:"msg" json:"msg"` // 提示消息
- LoginTime *gtime.Time `orm:"login_time" json:"loginTime"` // 登录时间
- Module string `orm:"module" json:"module"` // 登录模块
- }
|