mirror of
https://git.oceanpay.cc/danial/kami_scripts.git
synced 2025-12-18 22:47:10 +00:00
24 lines
714 B
Go
24 lines
714 B
Go
// Code generated by gorm.io/gen. DO NOT EDIT.
|
|
// Code generated by gorm.io/gen. DO NOT EDIT.
|
|
// Code generated by gorm.io/gen. DO NOT EDIT.
|
|
|
|
package model
|
|
|
|
const TableNameSysCasbinRule = "sys_casbin_rule"
|
|
|
|
// SysCasbinRule mapped from table <sys_casbin_rule>
|
|
type SysCasbinRule struct {
|
|
Ptype string `gorm:"column:ptype" json:"ptype"`
|
|
V0 string `gorm:"column:v0" json:"v0"`
|
|
V1 string `gorm:"column:v1" json:"v1"`
|
|
V2 string `gorm:"column:v2" json:"v2"`
|
|
V3 string `gorm:"column:v3" json:"v3"`
|
|
V4 string `gorm:"column:v4" json:"v4"`
|
|
V5 string `gorm:"column:v5" json:"v5"`
|
|
}
|
|
|
|
// TableName SysCasbinRule's table name
|
|
func (*SysCasbinRule) TableName() string {
|
|
return TableNameSysCasbinRule
|
|
}
|