mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-02-01 06:28:06 +08:00
16 lines
457 B
Go
16 lines
457 B
Go
package model
|
|
|
|
type BackupRecord struct {
|
|
BaseModel
|
|
From string `json:"from"`
|
|
CronjobID uint `json:"cronjobID"`
|
|
SourceAccountIDs string `json:"sourceAccountsIDs"`
|
|
DownloadAccountID uint `json:"downloadAccountID"`
|
|
|
|
Type string `gorm:"not null" json:"type"`
|
|
Name string `gorm:"not null" json:"name"`
|
|
DetailName string `json:"detailName"`
|
|
FileDir string `json:"fileDir"`
|
|
FileName string `json:"fileName"`
|
|
}
|