sys_casbin.go 306 B

123456789
  1. package model
  2. type CasbinModel struct {
  3. ID uint `json:"id" gorm:"column:_id"`
  4. Ptype string `json:"ptype" gorm:"column:ptype"`
  5. AuthorityId string `json:"rolename" gorm:"column:v0"`
  6. Path string `json:"path" gorm:"column:v1"`
  7. Method string `json:"method" gorm:"column:v2"`
  8. }