test_data/model/casbin.go
2024-07-17 15:13:00 +08:00

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"`
}