sys_user.go 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. package request
  2. import (
  3. "github.com/flipped-aurora/gin-vue-admin/server/model/system"
  4. )
  5. // Register User register structure
  6. type Register struct {
  7. Username string `json:"userName" example:"用户名"`
  8. Password string `json:"passWord" example:"密码"`
  9. NickName string `json:"nickName" example:"昵称"`
  10. HeaderImg string `json:"headerImg" example:"头像链接"`
  11. AuthorityId uint `json:"authorityId" swaggertype:"string" example:"int 角色id"`
  12. Enable int `json:"enable" swaggertype:"string" example:"int 是否启用"`
  13. AuthorityIds []uint `json:"authorityIds" swaggertype:"string" example:"[]uint 角色id"`
  14. Phone string `json:"phone" example:"电话号码"`
  15. Email string `json:"email" example:"电子邮箱"`
  16. }
  17. // User login structure
  18. type Login struct {
  19. Username string `json:"username"` // 用户名
  20. Password string `json:"password"` // 密码
  21. Captcha string `json:"captcha"` // 验证码
  22. CaptchaId string `json:"captchaId"` // 验证码ID
  23. }
  24. // Modify password structure
  25. type ChangePasswordReq struct {
  26. ID uint `json:"-"` // 从 JWT 中提取 user id,避免越权
  27. Password string `json:"password"` // 密码
  28. NewPassword string `json:"newPassword"` // 新密码
  29. }
  30. // Modify user's auth structure
  31. type SetUserAuth struct {
  32. AuthorityId uint `json:"authorityId"` // 角色ID
  33. }
  34. // Modify user's auth structure
  35. type SetUserAuthorities struct {
  36. ID uint
  37. AuthorityIds []uint `json:"authorityIds"` // 角色ID
  38. }
  39. type ChangeUserInfo struct {
  40. ID uint `gorm:"primarykey"` // 主键ID
  41. NickName string `json:"nickName" gorm:"default:系统用户;comment:用户昵称"` // 用户昵称
  42. Phone string `json:"phone" gorm:"comment:用户手机号"` // 用户手机号
  43. AuthorityIds []uint `json:"authorityIds" gorm:"-"` // 角色ID
  44. Email string `json:"email" gorm:"comment:用户邮箱"` // 用户邮箱
  45. HeaderImg string `json:"headerImg" gorm:"default:https://qmplusimg.henrongyi.top/gva_header.jpg;comment:用户头像"` // 用户头像
  46. SideMode string `json:"sideMode" gorm:"comment:用户侧边主题"` // 用户侧边主题
  47. Enable int `json:"enable" gorm:"comment:冻结用户"` //冻结用户
  48. Authorities []system.SysAuthority `json:"-" gorm:"many2many:sys_user_authority;"`
  49. }
  50. type Email struct {
  51. ID uint `json:"id"`
  52. Email string `json:"email"`
  53. }