2022-10-28 17:04:57 +08:00
|
|
|
package model
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
2022-12-13 17:20:13 +08:00
|
|
|
type Website struct {
|
2022-10-28 17:04:57 +08:00
|
|
|
BaseModel
|
2023-04-17 16:54:34 +08:00
|
|
|
Protocol string `gorm:"type:varchar;not null" json:"protocol"`
|
|
|
|
PrimaryDomain string `gorm:"type:varchar;not null" json:"primaryDomain"`
|
|
|
|
Type string `gorm:"type:varchar;not null" json:"type"`
|
|
|
|
Alias string `gorm:"type:varchar;not null" json:"alias"`
|
|
|
|
Remark string `gorm:"type:longtext;" json:"remark"`
|
|
|
|
Status string `gorm:"type:varchar;not null" json:"status"`
|
|
|
|
HttpConfig string `gorm:"type:varchar;not null" json:"httpConfig"`
|
|
|
|
ExpireDate time.Time `json:"expireDate"`
|
|
|
|
|
|
|
|
Proxy string `gorm:"type:varchar;" json:"proxy"`
|
|
|
|
ProxyType string `gorm:"type:varchar;" json:"proxyType"`
|
|
|
|
SiteDir string `gorm:"type:varchar;" json:"siteDir"`
|
|
|
|
ErrorLog bool `json:"errorLog"`
|
|
|
|
AccessLog bool `json:"accessLog"`
|
|
|
|
DefaultServer bool `json:"defaultServer"`
|
|
|
|
Rewrite string `gorm:"type:varchar" json:"rewrite"`
|
|
|
|
|
|
|
|
WebsiteGroupID uint `gorm:"type:integer" json:"webSiteGroupId"`
|
|
|
|
WebsiteSSLID uint `gorm:"type:integer" json:"webSiteSSLId"`
|
|
|
|
RuntimeID uint `gorm:"type:integer" json:"runtimeID"`
|
|
|
|
AppInstallID uint `gorm:"type:integer" json:"appInstallId"`
|
|
|
|
|
|
|
|
Domains []WebsiteDomain `json:"domains" gorm:"-:migration"`
|
|
|
|
WebsiteSSL WebsiteSSL `json:"webSiteSSL" gorm:"-:migration"`
|
2022-11-11 17:41:39 +08:00
|
|
|
}
|
|
|
|
|
2022-12-13 17:20:13 +08:00
|
|
|
func (w Website) TableName() string {
|
2022-11-11 17:41:39 +08:00
|
|
|
return "websites"
|
2022-10-28 17:04:57 +08:00
|
|
|
}
|