10 lines
301 B
Go
10 lines
301 B
Go
package model
|
|
|
|
type Casbin struct {
|
|
Ptype string `json:"ptype" gorm:"column:ptype"`
|
|
AuthorityId string `json:"role" gorm:"column:v0"`
|
|
Path string `json:"path" gorm:"column:v1"`
|
|
Method string `json:"method" gorm:"column:v2"`
|
|
ApiId string `json:"api_id" gorm:"column:v3"`
|
|
}
|