config_item.go 299 B

123456789101112131415
  1. package model
  2. import "gorm.io/gorm"
  3. type ConfigItemModel struct {
  4. gorm.Model
  5. BlockKey string
  6. Key string
  7. ApolloKey string
  8. ConstraintList []ValueConstraintModel `gorm:"many2many:cc_rel_item_cst"`
  9. }
  10. func (c ConfigItemModel) TableName() string {
  11. return "cc_config_item"
  12. }