1
This commit is contained in:
21
internal/app/system/model/entity/sys_user_online.go
Normal file
21
internal/app/system/model/entity/sys_user_online.go
Normal file
@@ -0,0 +1,21 @@
|
||||
// =================================================================================
|
||||
// Code generated 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:"操作系统"`
|
||||
}
|
||||
Reference in New Issue
Block a user