sys_user_online.go 928 B

123456789101112131415161718192021
  1. // =================================================================================
  2. // Code generated by GoFrame CLI tool. DO NOT EDIT.
  3. // =================================================================================
  4. package entity
  5. import (
  6. "github.com/gogf/gf/v2/os/gtime"
  7. )
  8. // SysUserOnline is the golang structure for table sys_user_online.
  9. type SysUserOnline struct {
  10. Id uint64 `json:"id" description:""`
  11. Uuid string `json:"uuid" description:"用户标识"`
  12. Token string `json:"token" description:"用户token"`
  13. CreateTime *gtime.Time `json:"createTime" description:"登录时间"`
  14. UserName string `json:"userName" description:"用户名"`
  15. Ip string `json:"ip" description:"登录ip"`
  16. Explorer string `json:"explorer" description:"浏览器"`
  17. Os string `json:"os" description:"操作系统"`
  18. }