Files
arenax-server/api/verify/v1/verify.go

13 lines
320 B
Go

package v1
import "github.com/gogf/gf/v2/frame/g"
type VerifyReq struct {
g.Meta `path:"/verify" method:"post" tags:"Verify" summary:"验证"`
VerifySign string `json:"verifySign" v:"required#验签不能为空" dc:"验签"`
}
type VerifyRes struct {
Response interface{} `json:"response" dc:"返回结果"`
}