release: v0.1.3

This commit is contained in:
2026-04-03 14:24:29 +08:00
parent 98839e9782
commit 83ee4bb5ea
14 changed files with 413 additions and 132 deletions

View File

@@ -7,12 +7,17 @@ type CodeResp struct {
Data string `json:"data"`
}
type LoginFormError struct {
Code string `json:"code"`
}
// 登录响应
type LoginResp struct {
RefreshCode int `json:"refresh_code"`
Status bool `json:"status"`
Msg string `json:"msg"`
Back string `json:"back"`
RefreshCode int `json:"refresh_code"`
Status bool `json:"status"`
Msg string `json:"msg"`
Back string `json:"back"`
FormError LoginFormError `json:"formError"`
}
type StudyResp struct {