goweb-gin-demo/server/model/system/sys_jwt_blacklist.go

11 lines
146 B
Go

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