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

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