Files
web/server/models/yuheng_cloud_register.go
whm 0800982224 feat: 分片上传断点续传、临时目录后台配置与清扫、宇恒云账号管理
- 管理端大文件分片上传与 sessionStorage 续传;Nginx 大请求体/超时
- .chunk-uploads 定期清扫;system_config 后台配置保留时长与扫描间隔
- 宇恒云 POST /register 对接与 yuheng_cloud_register_records 留痕;yuheng_cloud:manage 权限

Made-with: Cursor
2026-04-13 14:50:27 +08:00

10 lines
401 B
Go
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package models
// YuhengCloudRegisterRecord 宇恒云注册请求在本库的留痕仅账号与密码email 仅转发云端接口不落库)
type YuhengCloudRegisterRecord struct {
ID string `bson:"_id,omitempty" json:"id"`
Username string `bson:"username" json:"username"`
Password string `bson:"password" json:"password"`
CreatedAt string `bson:"created_at" json:"created_at"`
}