2022-10-12 10:57:22 +00:00
|
|
|
package model
|
|
|
|
|
|
|
|
type AppInstallBackup struct {
|
|
|
|
BaseModel
|
2022-10-17 08:32:31 +00:00
|
|
|
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:"-"`
|
2022-10-12 10:57:22 +00:00
|
|
|
}
|