admin-api/model/system/sys_jwt_blacklist.go

11 lines
154 B
Go
Raw Normal View History

2024-10-23 02:09:54 +00:00
package system
import (
"myschools.me/lemons/admin/global"
)
type JwtBlacklist struct {
global.GVA_MODEL
Jwt string `gorm:"type:text;comment:jwt"`
}