pg_casbin_rule.go
421 字节
package models
// CasbinRule
type CasbinRule struct {
tableName struct{} `pg:"casbin_rule"`
// 唯一标识
Id int64
// 规则类型:p g
PType string
// 值0 sub:role_id
V0 string
// 值1 object:请求对象 接口地址/对象
V1 string
// 值2 action:操作方法 httpMethod/read/write
V2 string
// 值3 扩展字段 access_id
V3 string
// 值4 扩展字段
V4 string
// 值5 扩展字段
V5 string
}