token.go 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. package model
  2. import "iot_manager_service/app/system/dao"
  3. type Token struct {
  4. TenantId string
  5. UserName string
  6. Password string
  7. GrantType string
  8. RefreshToken string
  9. UserType string
  10. }
  11. type UserInfo struct {
  12. *dao.User //用户基础信息
  13. Permissions []string //权限标识集合
  14. Roles []string //角色集合
  15. OauthId string //第三方授权id
  16. }
  17. type RspToken struct {
  18. TenantId string `json:"tenant_id"`
  19. UserId int `json:"user_id"`
  20. RoleId int `json:"role_id"`
  21. OauthId string `json:"oauth_id"`
  22. Account string `json:"account"`
  23. UserName string `json:"user_name"`
  24. NickName string `json:"nick_name"`
  25. RoleName string `json:"role_name"`
  26. Avatar string `json:"avatar"`
  27. AccessToken string `json:"access_token"`
  28. RefreshToken string `json:"refresh_token"`
  29. TokenType string `json:"token_type"`
  30. ExpiresIn int `json:"expires_in"`
  31. License string `json:"license"`
  32. }
  33. type RspCaptcha struct {
  34. Key string `json:"key"`
  35. Image string `json:"image"`
  36. }
  37. type RspLogin struct {
  38. ID string `json:"id"`
  39. Name string `json:"name"`
  40. BackgroundUrl string `json:"backgroundUrl"`
  41. SysLogoUrl string `json:"sysLogoUrl"`
  42. }
  43. // JWT
  44. const (
  45. Iss = "iss"
  46. Aud = "aud"
  47. TenantId = "tenant_id"
  48. RoleName = "role_name"
  49. PostId = "post_id"
  50. UserId = "user_id"
  51. RoleId = "role_id"
  52. UserName = "user_name"
  53. OauthID = "oauth_id"
  54. NickName = "nick_name"
  55. TokenType = "token_type"
  56. DeptId = "dept_id"
  57. Account = "account"
  58. ClientId = "client_id"
  59. Exp = "exp"
  60. Nbf = "nbf"
  61. BEARER = "bearer"
  62. AccessToken = "access_token"
  63. RefreshToken = "refresh_token"
  64. Saber = "saber"
  65. )
  66. const (
  67. CaptchaHeaderKey = "Captcha-Key"
  68. CaptchaHeaderCode = "Captcha-Code"
  69. CaptchaNotCorrect = "验证码不正确"
  70. UserTypeHeaderKey = "User-Type"
  71. UserNotFound = "用户名或密码错误"
  72. UserHasNoRole = "未获得用户的角色信息"
  73. TenantNotFound = "请输入专属登录地址!"
  74. UserHasNoTenant = "未获得用户的租户信息"
  75. UserHasNoTenantPermission = "租户授权已过期,请联系管理员"
  76. HeaderKey = "Authorization"
  77. HEADER_PREFIX = "Basic "
  78. DEFAULT_AVATAR = "https://gw.alipayobjects.com/zos/rmsportal/BiazfanxmamNRoxxVxka.png"
  79. )