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