|
package models
|
|
|
|
type JccUserInfo struct {
|
|
UserName string `json:"user_name"`
|
|
Scope []string `json:"scope"`
|
|
Id int64 `json:"id"`
|
|
Exp int64 `json:"exp"`
|
|
Authorities []string `json:"authorities"`
|
|
Jti string `json:"jti"`
|
|
ClientID string `json:"client_id"`
|
|
}
|