11 lines
175 B
Go
11 lines
175 B
Go
|
package system
|
||
|
|
||
|
import (
|
||
|
"github.com/flipped-aurora/gin-vue-admin/server/global"
|
||
|
)
|
||
|
|
||
|
type JwtBlacklist struct {
|
||
|
global.GVA_MODEL
|
||
|
Jwt string `gorm:"type:text;comment:jwt"`
|
||
|
}
|