mirror of
https://gitcode.com/flipped-aurora/gin-vue-admin.git
synced 2026-05-17 12:48:04 +00:00
11 lines
127 B
Go
11 lines
127 B
Go
package model
|
|
|
|
import (
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
type JwtBlacklist struct {
|
|
gorm.Model
|
|
Jwt string `gorm:"type:text;comment:jwt"`
|
|
}
|