21 lines
498 B
Go
21 lines
498 B
Go
package entity
|
|
|
|
import (
|
|
"oss/consts"
|
|
|
|
"gitee.com/red-future---jilin-g/common/beans"
|
|
)
|
|
|
|
// File 存储文件实体
|
|
type File struct {
|
|
beans.MongoBaseDO `bson:",inline"` // 嵌入基础字段:Id, Creator, CreatedAt, Updater, UpdatedAt, TenantId, IsDeleted
|
|
// 基础信息
|
|
FileURL string `bson:"fileURL" json:"fileURL"` // 图URL
|
|
FileSize int `bson:"fileSize" json:"fileSize"`
|
|
}
|
|
|
|
// CollectionName 存储集合名称
|
|
func (File) CollectionName() string {
|
|
return consts.FileCollection
|
|
}
|