This commit is contained in:
2025-03-28 17:51:34 +08:00
parent da612380e0
commit 5c8802d2f0
68 changed files with 3422 additions and 630 deletions

View File

@@ -0,0 +1,15 @@
package req
type Login struct {
Email string `json:"email"`
Password string `json:"password"`
Captcha string `json:"captcha"`
CaptchaID string `json:"captcha_id"`
// 平台信息
Os string `json:"os"`
Ip string `json:"ip"`
Browser string `json:"browser"`
Referrer string `json:"referrer"`
Url string `json:"url"`
}

View File

@@ -0,0 +1,14 @@
package view
type LayuiTree struct {
ID string `json:"id"`
Title string `json:"title"`
Spread bool `json:"spread"`
Children []*LayuiTree `json:"children"`
}
type XmSelectTree struct {
Name string `json:"name"`
Value string `json:"value"`
Children []*XmSelectTree `json:"children"`
}