admin_user.go 949 B

1234567891011121314151617181920212223242526
  1. // =================================================================================
  2. // Code generated and maintained 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. // AdminUser is the golang structure of table admin_user for DAO operations like Where/Data.
  10. type AdminUser struct {
  11. g.Meta `orm:"table:admin_user, do:true"`
  12. Id interface{} //
  13. Username interface{} // 用户名
  14. Password interface{} // 密码
  15. LastLoginIp interface{} // 最后登录IP
  16. LastLoginTime *gtime.Time // 最后登录时间
  17. Status interface{} // 状态
  18. Description interface{} // 描述
  19. CreateTime *gtime.Time // 创建时间
  20. UpdateTime *gtime.Time // 更新时间
  21. Phone interface{} // 手机号
  22. Wxuserid interface{} // 企业微信关联id
  23. }