Files
go-admin/models/casbinrule.go
T
2020-03-18 23:09:37 +08:00

13 lines
366 B
Go

package models
//casbin_rule
type CasbinRule struct {
PType string `json:"p_type" gorm:"column:p_type"`
V0 string `json:"v0" gorm:"column:v0"`
V1 string `json:"v1" gorm:"column:v1"`
V2 string `json:"v2" gorm:"column:v2"`
V3 string `json:"v3" gorm:"column:v3"`
V4 string `json:"v4" gorm:"column:v4"`
V5 string `json:"v5" gorm:"column:v5"`
}