2021-07-16 20:08:11 +08:00
|
|
|
package system
|
2019-12-28 18:32:47 +08:00
|
|
|
|
|
|
|
import (
|
2021-08-23 23:13:24 +08:00
|
|
|
"github.com/flipped-aurora/gin-vue-admin/server/global"
|
2019-12-28 18:32:47 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
type JwtBlacklist struct {
|
2020-10-29 11:23:34 +08:00
|
|
|
global.GVA_MODEL
|
2020-09-18 15:41:26 +08:00
|
|
|
Jwt string `gorm:"type:text;comment:jwt"`
|
2020-05-19 22:08:45 +08:00
|
|
|
}
|