chore: replace all cn comments to en version by volc api (#313)

This commit is contained in:
tecvan
2025-07-31 15:18:11 +08:00
committed by GitHub
parent 91d6cdb430
commit 5abc63fba6
254 changed files with 5899 additions and 5844 deletions

View File

@@ -19,16 +19,16 @@ package entity
type User struct {
UserID int64
Name string // 昵称
UniqueName string // 唯一名称
Email string // 邮箱
Description string // 用户描述
IconURI string // 头像URI
IconURL string // 头像URL
UserVerified bool // 用户是否已验证
Name string // nickname
UniqueName string // unique name
Email string // email
Description string // user description
IconURI string // avatar URI
IconURL string // avatar URL
UserVerified bool // Is the user authenticated?
Locale string
SessionKey string // 会话密钥
SessionKey string // session key
CreatedAt int64 // 创建时间
UpdatedAt int64 // 更新时间
CreatedAt int64 // creation time
UpdatedAt int64 // update time
}