mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-11 09:45:43 +08:00
11 lines
450 B
Go
11 lines
450 B
Go
package model
|
|
|
|
type AppInstallBackup struct {
|
|
BaseModel
|
|
Name string `gorm:"type:varchar(64);not null" json:"name"`
|
|
Path string `gorm:"type:varchar(64);not null" json:"path"`
|
|
Param string `gorm:"type:longtext;" json:"param"`
|
|
AppDetailId uint `gorm:"type:integer;not null" json:"app_detail_id"`
|
|
AppInstallId uint `gorm:"type:integer;not null" json:"app_install_id"`
|
|
AppDetail AppDetail `json:"-"`
|
|
}
|