1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-03-19 13:49:26 +08:00
1Panel/backend/app/model/app_container.go
2022-10-08 15:03:29 +08:00

10 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"`
}