You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
749 B

  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. )
  8. // GoUsers is the golang structure of table go_users for DAO operations like Where/Data.
  9. type GoUsers struct {
  10. g.Meta `orm:"table:go_users, do:true"`
  11. Id interface{} // 用户唯一ID,自增,长度为8位整数
  12. Username interface{} // 用户名,最大长度255字符,不能为空
  13. Avatar interface{} // 用户头像路径或相关标识,可为空
  14. Password interface{} // 用户登录密码,最大长度255字符,不能为空
  15. }