fix version 1

This commit is contained in:
2026-09-22 21:15:34 +08:00
parent 9f86366638
commit d63d7e8b3a
277 changed files with 9959 additions and 1514 deletions

View File

@@ -9,7 +9,8 @@ import (
type CloudSpace struct {
types.Std_IICUDS
types.Std_Passport
KeyIdentifier string `gorm:"uniqueIndex;size:32" json:"key_identifier"`
// 空间标识按用户唯一,仅建普通索引,允许多用户各自持有空间
KeyIdentifier string `gorm:"index;size:36" json:"key_identifier"`
TotalStorage int64 `json:"total_storage"` // 总存储空间
UsedStorage int64 `json:"used_storage"` // 已用存储空间
MaxStorage int64 `json:"max_storage"` // 最大存储空间