mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-13 19:21:19 +08:00
25 lines
1.1 KiB
Go
25 lines
1.1 KiB
Go
package model
|
|
|
|
import "time"
|
|
|
|
type Website struct {
|
|
BaseModel
|
|
Protocol string `gorm:"type:varchar(64);not null" json:"protocol"`
|
|
PrimaryDomain string `gorm:"type:varchar(128);not null" json:"primaryDomain"`
|
|
Type string `gorm:"type:varchar(64);not null" json:"type"`
|
|
Alias string `gorm:"type:varchar(128);not null" json:"alias"`
|
|
Remark string `gorm:"type:longtext;" json:"remark"`
|
|
Status string `gorm:"type:varchar(64);not null" json:"status"`
|
|
HttpConfig string `gorm:"type:varchar(64);not null" json:"httpConfig"`
|
|
ExpireDate time.Time `json:"expireDate"`
|
|
AppInstallID uint `gorm:"type:integer" json:"appInstallId"`
|
|
WebsiteGroupID uint `gorm:"type:integer" json:"webSiteGroupId"`
|
|
WebsiteSSLID uint `gorm:"type:integer" json:"webSiteSSLId"`
|
|
Proxy string `gorm:"type:varchar(128);not null" json:"proxy"`
|
|
Domains []WebsiteDomain `json:"domains"`
|
|
WebsiteSSL WebsiteSSL `json:"webSiteSSL"`
|
|
}
|
|
|
|
func (w Website) TableName() string {
|
|
return "websites"
|
|
}
|