初始化

This commit is contained in:
2024-08-27 14:51:15 +08:00
parent 5bda797839
commit 2919f32729
91 changed files with 5691 additions and 1 deletions
+10
View File
@@ -0,0 +1,10 @@
package requests
type LoginRequest struct {
Login // 登录
}
// Login 登录
type Login struct {
OpenId string `json:"openid" form:"openid" label:"openid"`
}
+4
View File
@@ -0,0 +1,4 @@
package requests
type Requests struct {
}