package request import ( "apsClient/constvar" "github.com/golang-jwt/jwt/v4" ) // Custom claims structure type CustomClaims struct { BaseClaims BufferTime int64 jwt.StandardClaims } type BaseClaims struct { UserId string Username string ParentId string UserType constvar.UserType }