sys_casbin.go 258 字节
Newer Older
Mr.奇淼('s avatar
Mr.奇淼( 已提交
1
package model
2 3

type CasbinModel struct {
4
	Ptype       string `json:"ptype" gorm:"column:p_type"`
Mr.奇淼('s avatar
Mr.奇淼( 已提交
5 6 7
	AuthorityId string `json:"rolename" gorm:"column:v0"`
	Path        string `json:"path" gorm:"column:v1"`
	Method      string `json:"method" gorm:"column:v2"`
L
Leonard Wang 已提交
8
}