sys_login_log.go 975 B

12345678910111213141516171819202122232425
  1. // =================================================================================
  2. // Code generated by GoFrame CLI tool. DO NOT EDIT. Created at 2022-03-08 11:31:48
  3. // =================================================================================
  4. package do
  5. import (
  6. "github.com/gogf/gf/v2/frame/g"
  7. "github.com/gogf/gf/v2/os/gtime"
  8. )
  9. // SysLoginLog is the golang structure of table sys_login_log for DAO operations like Where/Data.
  10. type SysLoginLog struct {
  11. g.Meta `orm:"table:sys_login_log, do:true"`
  12. InfoId interface{} // 访问ID
  13. LoginName interface{} // 登录账号
  14. Ipaddr interface{} // 登录IP地址
  15. LoginLocation interface{} // 登录地点
  16. Browser interface{} // 浏览器类型
  17. Os interface{} // 操作系统
  18. Status interface{} // 登录状态(0成功 1失败)
  19. Msg interface{} // 提示消息
  20. LoginTime *gtime.Time // 登录时间
  21. Module interface{} // 登录模块
  22. }