2022-09-22 16:16:04 +08:00
|
|
|
package model
|
|
|
|
|
|
|
|
type App struct {
|
|
|
|
BaseModel
|
2023-05-15 22:40:05 +08:00
|
|
|
Name string `json:"name" gorm:"type:varchar(64);not null"`
|
2023-05-16 17:31:47 +08:00
|
|
|
Key string `json:"key" gorm:"type:varchar(64);not null;"`
|
|
|
|
ShortDescZh string `json:"shortDescZh" yaml:"shortDescZh" gorm:"type:longtext;"`
|
|
|
|
ShortDescEn string `json:"shortDescEn" yaml:"shortDescEn" gorm:"type:longtext;"`
|
2023-05-15 22:40:05 +08:00
|
|
|
Icon string `json:"icon" gorm:"type:longtext;"`
|
|
|
|
Type string `json:"type" gorm:"type:varchar(64);not null"`
|
|
|
|
Status string `json:"status" gorm:"type:varchar(64);not null"`
|
2023-05-16 17:31:47 +08:00
|
|
|
Required string `json:"required" gorm:"type:varchar(64);"`
|
2023-05-15 22:40:05 +08:00
|
|
|
CrossVersionUpdate bool `json:"crossVersionUpdate"`
|
|
|
|
Limit int `json:"limit" gorm:"type:Integer;not null"`
|
|
|
|
Website string `json:"website" gorm:"type:varchar(64);not null"`
|
|
|
|
Github string `json:"github" gorm:"type:varchar(64);not null"`
|
|
|
|
Document string `json:"document" gorm:"type:varchar(64);not null"`
|
|
|
|
Recommend int `json:"recommend" gorm:"type:Integer;not null"`
|
|
|
|
Resource string `json:"resource" gorm:"type:varchar;not null;default:remote"`
|
|
|
|
ReadMe string `json:"readMe" gorm:"type:varchar;"`
|
|
|
|
LastModified int `json:"lastModified" gorm:"type:Integer;"`
|
|
|
|
|
|
|
|
Details []AppDetail `json:"-" gorm:"-:migration"`
|
2023-05-16 17:31:47 +08:00
|
|
|
TagsKey []string `json:"tags" yaml:"tags" gorm:"-"`
|
2023-05-15 22:40:05 +08:00
|
|
|
AppTags []AppTag `json:"-" gorm:"-:migration"`
|
2022-09-22 16:16:04 +08:00
|
|
|
}
|