25 lines
630 B
Go
25 lines
630 B
Go
|
package gmodel
|
||
|
|
||
|
import (
|
||
|
"gorm.io/gorm"
|
||
|
)
|
||
|
|
||
|
// casbin_rule
|
||
|
type CasbinRule struct {
|
||
|
PType *string `gorm:"default:'';" json:"p_type"` //
|
||
|
V0 *string `gorm:"default:'';" json:"v0"` //
|
||
|
V1 *string `gorm:"default:'';" json:"v1"` //
|
||
|
V2 *string `gorm:"default:'';" json:"v2"` //
|
||
|
V3 *string `gorm:"default:'';" json:"v3"` //
|
||
|
V4 *string `gorm:"default:'';" json:"v4"` //
|
||
|
V5 *string `gorm:"default:'';" json:"v5"` //
|
||
|
}
|
||
|
type CasbinRuleModel struct {
|
||
|
db *gorm.DB
|
||
|
name string
|
||
|
}
|
||
|
|
||
|
func NewCasbinRuleModel(db *gorm.DB) *CasbinRuleModel {
|
||
|
return &CasbinRuleModel{db: db, name: "casbin_rule"}
|
||
|
}
|