2022-09-22 16:16:04 +08:00
|
|
|
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"`
|
2022-09-26 16:32:40 +08:00
|
|
|
Params string `json:"-" gorm:"type:longtext;"`
|
|
|
|
DockerCompose string `json:"-" gorm:"type:longtext;not null"`
|
2022-10-03 17:35:39 +08:00
|
|
|
Readme string `json:"readme" gorm:"type:longtext;"`
|
2022-09-30 17:56:06 +08:00
|
|
|
Status string `json:"status" gorm:"type:varchar(64);not null"`
|
2022-10-03 17:35:39 +08:00
|
|
|
LastVersion string `json:"lastVersion" gorm:"type:varchar(64);"`
|
2022-09-22 16:16:04 +08:00
|
|
|
}
|