mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-02-01 14:38:07 +08:00
12 lines
470 B
Go
12 lines
470 B
Go
package model
|
|
|
|
type AppContainer struct {
|
|
BaseModel
|
|
ServiceName string `json:"serviceName" gorm:"type:varchar(64);not null"`
|
|
ContainerName string `json:"containerName" gorm:"type:varchar(64);not null"`
|
|
AppInstallID uint `json:"appInstallId" gorm:"type:integer;not null"`
|
|
Port int `json:"port" gorm:"type:integer;not null"`
|
|
Auth string `json:"auth" gorm:"type:longtext;not null"`
|
|
AppInstall AppInstall `gorm:"-"`
|
|
}
|