mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-31 22:18:07 +08:00
9 lines
248 B
Go
9 lines
248 B
Go
|
package model
|
||
|
|
||
|
type WebSiteDomain struct {
|
||
|
BaseModel
|
||
|
WebSiteID uint `gorm:"type:varchar(64);not null" json:"web_site_id"`
|
||
|
Domain string `gorm:"type:varchar(256);not null" json:"domain"`
|
||
|
Port int `gorm:"type:integer" json:"port"`
|
||
|
}
|