package entity import ( "oss/consts" "gitee.com/red-future---jilin-g/common/beans" ) // TenantOssTotal 租户储存服务总计实体 type TenantOssTotal struct { beans.MongoBaseDO `bson:",inline"` // 嵌入基础字段:Id, Creator, CreatedAt, Updater, UpdatedAt, TenantId, IsDeleted // 基础信息 UsedOssSize int `bson:"usedOssSize" json:"usedOssSize"` TotalOssSize int `bson:"totalOssSize" json:"totalOssSize"` } // CollectionName 租户储存服务总计集合名称 func (TenantOssTotal) CollectionName() string { return consts.TenantOssTotalCollection }