goweb-gin-demo/model/web/jwt_blacklist.go

11 lines
143 B
Go

package web
import (
"goweb-gin-demo/global"
)
type JwtBlacklist struct {
global.GLOBAL_MODEL
Jwt string `gorm:"type:text;comment:jwt"`
}