mirror of
https://gitee.com/XM-GO/PandaX.git
synced 2026-04-27 10:39:36 +08:00
9 lines
240 B
Go
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"`
|
|
}
|