2020-04-04 21:39:07 +08:00
|
|
|
package model
|
2019-12-12 13:21:16 +08:00
|
|
|
|
|
|
|
type CasbinModel struct {
|
2019-12-19 09:36:21 +08:00
|
|
|
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"`
|
2020-04-08 11:07:27 +08:00
|
|
|
}
|