处理分享2

This commit is contained in:
2024-09-29 16:55:00 +08:00
parent 6431aa890b
commit c7daf18830
12 changed files with 302 additions and 96 deletions
+9 -2
View File
@@ -1,10 +1,17 @@
package requests
type ShareRequest struct {
GetShare // 获取分享数据
GetBackgroundImage // 获取背景图
ShareAuth // 授权
}
type GetShare struct {
// GetBackgroundImage 获取背景图
type GetBackgroundImage struct {
QaShareId string `json:"qa_share_id" form:"qa_share_id" label:"分享标识" validate:"required"`
}
// ShareAuth 授权
type ShareAuth struct {
QaShareId string `json:"qa_share_id" form:"qa_share_id" label:"分享标识" validate:"required"`
QaPassword string `json:"qa_password" form:"qa_password" label:"密码" validate:"required"`
}