2020-04-04 21:39:07 +08:00
|
|
|
package model
|
2019-12-12 13:21:16 +08:00
|
|
|
|
|
|
|
type CasbinModel struct {
|
2020-08-25 18:17:33 +08:00
|
|
|
Ptype string `json:"ptype" gorm:"column:p_type"`
|
2019-12-19 09:36:21 +08:00
|
|
|
AuthorityId string `json:"rolename" gorm:"column:v0"`
|
|
|
|
Path string `json:"path" gorm:"column:v1"`
|
|
|
|
Method string `json:"method" gorm:"column:v2"`
|
2020-05-19 22:08:45 +08:00
|
|
|
}
|