model.go 324 B

12345678910111213141516171819
  1. package models
  2. import (
  3. "gorm.io/gorm"
  4. )
  5. type ConfigItem struct {
  6. gorm.Model
  7. Group string `gorm:"index"`
  8. Key string
  9. Value string
  10. OptionKey string
  11. ValueType string
  12. Description string
  13. Order int
  14. IsEnabled bool
  15. Uri string `gorm:"uniqueIndex"`
  16. DefaultValue string
  17. }