Files
PandaX/base/casbin/casbin_model.go
feilong.teng@rheinchina.com cd824b7f0c 集成完成
2021-12-12 19:49:39 +08:00

9 lines
240 B
Go

package casbin
type CasbinRule struct {
Ptype string `json:"ptype" gorm:"column:ptype"`
RoleKey string `json:"roleKey" gorm:"column:v0"`
Path string `json:"path" gorm:"column:v1"`
Method string `json:"method" gorm:"column:v2"`
}