logo search

This commit is contained in:
eson 2023-10-20 16:42:58 +08:00
parent c596831b0c
commit 125ef2b179
2 changed files with 26 additions and 26 deletions

View File

@ -21,6 +21,7 @@ type FsPreprocessLogo struct {
Source *string `gorm:"index;default:'';" json:"source"` //
Ctime *time.Time `gorm:"default:'0000-00-00 00:00:00';" json:"ctime"` //
Utime *time.Time `gorm:"default:'0000-00-00 00:00:00';" json:"utime"` //
ResourceVectorUrl *string `gorm:"default:'';" json:"resource_vector_url"` //
}
type FsPreprocessLogoModel struct {
db *gorm.DB

View File

@ -18,7 +18,6 @@ type FsResource struct {
ApiType *int64 `gorm:"default:1;" json:"api_type"` // 调用类型1=对外2=对内
BucketName *string `gorm:"default:'';" json:"bucket_name"` // 存储桶名: 1=持久 2=缓存
Source *string `gorm:"default:'';" json:"source"` // 来源
ResourceVectorUrl *string `gorm:"default:'';" json:"resource_vector_url"` // 矢量图
}
type FsResourceModel struct {
db *gorm.DB