11 lines
299 B
Go
11 lines
299 B
Go
package requests
|
|
|
|
type ShareRequest struct {
|
|
GetShare // 获取分享数据
|
|
}
|
|
|
|
type GetShare 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"`
|
|
}
|