sys_user_online.go 793 B

1234567891011121314151617181920212223
  1. // =================================================================================
  2. // Code generated by GoFrame CLI tool. DO NOT EDIT.
  3. // =================================================================================
  4. package do
  5. import (
  6. "github.com/gogf/gf/v2/frame/g"
  7. "github.com/gogf/gf/v2/os/gtime"
  8. )
  9. // SysUserOnline is the golang structure of table sys_user_online for DAO operations like Where/Data.
  10. type SysUserOnline struct {
  11. g.Meta `orm:"table:sys_user_online, do:true"`
  12. Id interface{} //
  13. Uuid interface{} // 用户标识
  14. Token interface{} // 用户token
  15. CreateTime *gtime.Time // 登录时间
  16. UserName interface{} // 用户名
  17. Ip interface{} // 登录ip
  18. Explorer interface{} // 浏览器
  19. Os interface{} // 操作系统
  20. }