| 12345678910111213141516171819202122 |
- // ==========================================================================
- // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY.
- // ==========================================================================
- package internal
- import (
- "github.com/gogf/gf/os/gtime"
- )
- // SysLogin is the golang structure for table sys_login.
- type SysLogin struct {
- InfoId int `orm:"info_id,primary" json:"infoId"` // 访问ID
- UserName string `orm:"user_name" json:"userName"` // 用户账号
- 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 string `orm:"status" json:"status"` // 登录状态(10成功20失败)
- Msg string `orm:"msg" json:"msg"` // 提示消息
- LoginTime *gtime.Time `orm:"login_time" json:"loginTime"` // 访问时间
- }
|