user.go 762 B

12345678910111213141516171819202122232425262728293031
  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. // 用户角色,admin为管理员,多个使用逗号分割
  13. // 现在没多大用
  14. Roles string `json:"roles"`
  15. Password string `json:"password"`
  16. Remark string `json:"remark"`
  17. Source string `json:"source"` // 账号来源,默认或者自有账号
  18. CreatedAt time.Time `orm:"auto_now_add;type(datetime)" json:"createdAt"`
  19. }
  20. func (u *User) IsAdmin() bool {
  21. if len(u.Roles) == 0 {
  22. return false
  23. }
  24. if strings.Index(strings.ToUpper(u.Roles), "ADMIN") > -1 {
  25. return true
  26. }
  27. return false
  28. }