1Panel/agent/app/model/website_domain.go

14 lines
369 B
Go
Raw Normal View History

2024-07-23 14:48:37 +08:00
package model
type WebsiteDomain struct {
BaseModel
WebsiteID uint `gorm:"column:website_id;type:varchar(64);not null;" json:"websiteId"`
Domain string `gorm:"type:varchar(256);not null" json:"domain"`
SSL bool `json:"ssl"`
2024-07-23 14:48:37 +08:00
Port int `gorm:"type:integer" json:"port"`
}
func (w WebsiteDomain) TableName() string {
return "website_domains"
}