package models import "time" type DNSZone struct { ID int64 `gorm:"primaryKey" json:"id"` Name string `gorm:"column:name;uniqueIndex" json:"name"` ZoneType string `gorm:"column:zone_type" json:"zone_type"` Description *string `gorm:"column:description" json:"description,omitempty"` ManagedBy string `gorm:"column:managed_by" json:"managed_by"` Active bool `gorm:"column:active" json:"active"` CreatedAt time.Time `gorm:"column:created_at" json:"created_at"` UpdatedAt time.Time `gorm:"column:updated_at" json:"updated_at"` } func (DNSZone) TableName() string { return "dns_zones" } type DNSRecord struct { ID int64 `gorm:"primaryKey" json:"id"` ZoneID int64 `gorm:"column:zone_id" json:"zone_id"` Name string `gorm:"column:name" json:"name"` RecordType string `gorm:"column:record_type" json:"record_type"` Value string `gorm:"column:value" json:"value"` TTL int `gorm:"column:ttl" json:"ttl"` Active bool `gorm:"column:active" json:"active"` CreatedAt time.Time `gorm:"column:created_at" json:"created_at"` UpdatedAt time.Time `gorm:"column:updated_at" json:"updated_at"` } func (DNSRecord) TableName() string { return "dns_records" }