Initial commit

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
2026-09-15 13:57:10 +08:00
co-authored by Claude Opus 5
commit 8679200f41
1897 changed files with 257900 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
package userResourcemod
// ResourceListReq 用户资源配置查询
type ResourceListReq struct {
PageNumber int `form:"pageNumber" json:"pageNumber"`
PageSize int `form:"pageSize" json:"pageSize"`
}
// ResourceModifyReq 用户资源配置修改
type ResourceModifyReq struct {
ID string `form:"id" json:"id"`
Resource *string `json:"resource" form:"resource"` //资源
Type *string `json:"type" form:"type"` //类型,bg:背景, avatar:头像
}
// ResourceAddReq 用户资源配置新增
type ResourceAddReq struct {
Resource string `json:"resource" form:"resource"` //资源
Type string `json:"type" form:"type"` //类型,bg:背景, avatar:头像
}
// ResourceDelReq 用户资源配置删除
type ResourceDelReq struct {
ID string `form:"id" json:"id"`
}