2022-11-21 15:20:04 +08:00
|
|
|
package dto
|
|
|
|
|
|
|
|
type CaptchaResponse struct {
|
|
|
|
CaptchaID string `json:"captchaID"`
|
|
|
|
ImagePath string `json:"imagePath"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type UserLoginInfo struct {
|
|
|
|
Name string `json:"name"`
|
|
|
|
Token string `json:"token"`
|
|
|
|
MfaStatus string `json:"mfaStatus"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type MfaCredential struct {
|
|
|
|
Secret string `json:"secret"`
|
|
|
|
Code string `json:"code"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type Login struct {
|
2023-03-06 17:57:45 +08:00
|
|
|
Name string `json:"name"`
|
|
|
|
Password string `json:"password"`
|
2022-11-21 15:20:04 +08:00
|
|
|
Captcha string `json:"captcha"`
|
|
|
|
CaptchaID string `json:"captchaID"`
|
|
|
|
AuthMethod string `json:"authMethod"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type MFALogin struct {
|
2023-03-06 17:57:45 +08:00
|
|
|
Name string `json:"name"`
|
|
|
|
Password string `json:"password"`
|
2022-11-21 15:20:04 +08:00
|
|
|
Code string `json:"code"`
|
|
|
|
AuthMethod string `json:"authMethod"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type InitUser struct {
|
|
|
|
Name string `json:"name" validate:"required"`
|
|
|
|
Password string `json:"password" validate:"required"`
|
|
|
|
}
|