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

11 lines
146 B
Go
Raw Normal View History

2021-11-10 11:11:14 +08:00
package system
2021-10-29 14:39:50 +08:00
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"`
}