user.go 898 B

123456789101112131415161718192021222324252627282930313233
  1. package models
  2. import (
  3. "strings"
  4. "time"
  5. )
  6. // User 用户表
  7. type User struct {
  8. Id int `orm:"pk;auto" json:"id"`
  9. // 用户账号,唯一标识, Uid
  10. Account string `orm:"unique" json:"account"`
  11. Nickname string `json:"nickname"`
  12. Email string `json:"email"`
  13. // 用户角色,admin为管理员,多个使用逗号分割
  14. // 现在没多大用
  15. Roles string `json:"roles"`
  16. Password string `json:"password"`
  17. Remark string `json:"remark"`
  18. Source string `json:"source"` // 账号来源,默认或者自有账号
  19. TempCode string `json:"tempCode"` // 临时授权码,重置密码
  20. CreatedAt time.Time `orm:"auto_now_add;type(datetime);default(0001-01-01 00:00:00)" json:"createdAt"`
  21. }
  22. func (u *User) IsAdmin() bool {
  23. if len(u.Roles) == 0 {
  24. return false
  25. }
  26. if strings.Index(strings.ToUpper(u.Roles), "ADMIN") > -1 {
  27. return true
  28. }
  29. return false
  30. }