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

11 lines
143 B
Go
Raw Normal View History

2021-10-29 14:39:50 +08:00
package web
import (
2021-10-29 14:44:41 +08:00
"goweb-gin-demo/global"
2021-10-29 14:39:50 +08:00
)
type JwtBlacklist struct {
global.GLOBAL_MODEL
Jwt string `gorm:"type:text;comment:jwt"`
}