sys_user_online.go 998 B

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