mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-03-19 05:39:26 +08:00
11 lines
399 B
Go
11 lines
399 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"`
|
|
FormFields string `json:"formFields" gorm:"type:longtext;"`
|
|
DockerCompose string `json:"dockerCompose" gorm:"type:longtext;not null"`
|
|
Readme string `json:"readme" gorm:"type:longtext;not null"`
|
|
}
|