mirror of https://github.com/1Panel-dev/1Panel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
622 B
17 lines
622 B
package model
|
|
|
|
type AppDetail struct {
|
|
BaseModel
|
|
AppId uint `json:"appId" gorm:"not null"`
|
|
Version string `json:"version" gorm:"not null"`
|
|
Params string `json:"-"`
|
|
DockerCompose string `json:"dockerCompose"`
|
|
Status string `json:"status" gorm:"not null"`
|
|
LastVersion string `json:"lastVersion"`
|
|
LastModified int `json:"lastModified"`
|
|
DownloadUrl string `json:"downloadUrl"`
|
|
DownloadCallBackUrl string `json:"downloadCallBackUrl"`
|
|
Update bool `json:"update"`
|
|
IgnoreUpgrade bool `json:"ignoreUpgrade"`
|
|
}
|