初始化提交

This commit is contained in:
2023-06-08 09:32:22 +08:00
parent b748b7e847
commit 531962b50f
54 changed files with 2222 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
package requests
type Requests struct {
}
+13
View File
@@ -0,0 +1,13 @@
package requests
type Basic struct {
Login // 登陆
}
// Login 登陆
type Login struct {
Username string `json:"username" form:"username" validate:"required" label:"用户名"` // 用户名
Password string `json:"password" form:"password" validate:"required"` // 密码
Captcha string `json:"captcha" form:"captcha" validate:"required"` // 验证码
CaptchaId string `json:"captchaId" form:"captchaId" validate:"required"` // 验证码ID
}