mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-10-21 12:56:13 +08:00
9 lines
347 B
Go
9 lines
347 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"`
|
|
}
|