mirror of
https://gitee.com/xiangheng/x_admin.git
synced 2025-10-07 00:52:57 +08:00
13 lines
288 B
Go
13 lines
288 B
Go
package commonSchema
|
|
|
|
type CaptchaGetParams struct {
|
|
CaptchaType string `json:"captchaType"`
|
|
}
|
|
|
|
// 客户端参数 看自身业务构建即可
|
|
type ClientParams struct {
|
|
Token string `json:"token"`
|
|
PointJson string `json:"pointJson"`
|
|
CaptchaType string `json:"captchaType"`
|
|
}
|