mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-11 09:45:43 +08:00
12 lines
509 B
Go
12 lines
509 B
Go
package model
|
|
|
|
type AppDetail struct {
|
|
BaseModel
|
|
AppId uint `json:"appId" gorm:"type:integer;not null"`
|
|
Version string `json:"version" gorm:"type:varchar(64);not null"`
|
|
Params string `json:"-" gorm:"type:longtext;"`
|
|
DockerCompose string `json:"-" gorm:"type:longtext;not null"`
|
|
Readme string `json:"readme" gorm:"type:longtext;"`
|
|
Status string `json:"status" gorm:"type:varchar(64);not null"`
|
|
LastVersion string `json:"lastVersion" gorm:"type:varchar(64);"`
|
|
}
|