2020-04-04 21:39:07 +08:00
|
|
|
package model
|
2019-12-28 18:32:47 +08:00
|
|
|
|
|
|
|
import (
|
2020-08-23 15:13:23 +08:00
|
|
|
"gorm.io/gorm"
|
2019-12-28 18:32:47 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
type JwtBlacklist struct {
|
|
|
|
gorm.Model
|
2020-06-07 14:56:37 +08:00
|
|
|
Jwt string `gorm:"type:text;comment:'jwt'"`
|
2020-05-19 22:08:45 +08:00
|
|
|
}
|