rbac_rules.go 675 B

12345678910111213141516171819202122
  1. package model
  2. import (
  3. "time"
  4. )
  5. type RbacRules struct {
  6. ID uint64 `gorm:"primaryKey;column:id" json:"id"`
  7. Ptype string `gorm:"column:ptype" json:"ptype"`
  8. V0 string `gorm:"column:v0" json:"v0"`
  9. V1 string `gorm:"column:v1" json:"v1"`
  10. V2 string `gorm:"column:v2" json:"v2"`
  11. V3 string `gorm:"column:v3" json:"v3"`
  12. V4 string `gorm:"column:v4" json:"v4"`
  13. V5 string `gorm:"column:v5" json:"v5"`
  14. CreatedAt time.Time `gorm:"column:created_at" json:"created_at"`
  15. UpdatedAt time.Time `gorm:"column:updated_at" json:"updated_at"`
  16. }
  17. func (m *RbacRules) TableName() string {
  18. return "rbac_rules"
  19. }