18 lines
530 B
Go
18 lines
530 B
Go
package requests
|
|
|
|
type ShareRequest struct {
|
|
GetBackgroundImage // 获取背景图
|
|
ShareAuth // 授权
|
|
}
|
|
|
|
// 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"`
|
|
}
|