sys_jwt_blacklist.go 175 B

12345678910
  1. package system
  2. import (
  3. "github.com/flipped-aurora/gin-vue-admin/server/global"
  4. )
  5. type JwtBlacklist struct {
  6. global.GVA_MODEL
  7. Jwt string `gorm:"type:text;comment:jwt"`
  8. }