vo.go 202 B

12345678
  1. package user
  2. type ResetPasswordReq struct {
  3. Account string `json:"account"`
  4. Email string `json:"email"`
  5. Password string `json:"password"`
  6. AuthCode string `json:"authCode"` // 临时授权码
  7. }