12 lines
324 B
Go
Raw Normal View History

2024-10-14 13:49:16 +08:00
package my_jwt
import "github.com/dgrijalva/jwt-go"
// 自定义jwt的声明字段信息+标准字段参考地址https://blog.csdn.net/codeSquare/article/details/99288718
type CustomClaims struct {
UserId int64 `json:"user_id"`
Name string `json:"user_name"`
Phone string `json:"phone"`
jwt.StandardClaims
}