增加 8圈自动登录

This commit is contained in:
2025-07-04 14:28:24 +08:00
parent 9adc43f6e3
commit 37ca5a7462
34 changed files with 497 additions and 314 deletions

View File

@ -58,3 +58,12 @@ type StoreLoginRes struct {
g.Meta `mime:"application/json"`
Token string `json:"token"`
}
type Quan8AutologinReq struct {
g.Meta `path:"/quan8/autologin" method:"post" tags:"PC/Auth" summary:"8圈用户自动登录该系统"`
UUID string `json:"uuid" v:"required#UUID不能为空" dc:"UUID"`
StoreId int64
}
type Quan8AutologinRes struct {
Token string `json:"token"`
}