You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
// =================================================================================
|
|
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
|
|
// =================================================================================
|
|
|
|
|
|
|
|
package entity
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
|
|
)
|
|
|
|
|
|
|
|
// SysUserOnline is the golang structure for table sys_user_online.
|
|
|
|
type SysUserOnline struct {
|
|
|
|
Id uint64 `json:"id" description:""`
|
|
|
|
Uuid string `json:"uuid" description:"用户标识"`
|
|
|
|
Token string `json:"token" description:"用户token"`
|
|
|
|
CreateTime *gtime.Time `json:"createTime" description:"登录时间"`
|
|
|
|
UserName string `json:"userName" description:"用户名"`
|
|
|
|
Ip string `json:"ip" description:"登录ip"`
|
|
|
|
Explorer string `json:"explorer" description:"浏览器"`
|
|
|
|
Os string `json:"os" description:"操作系统"`
|
|
|
|
}
|