package dto type UserLoginInput struct{ LoginType, Code, Mobile, VerifyCode, Account, Password, Terminal string } type AdminLoginInput struct{ Username, Password string } type TokenPair struct { AccessToken string `json:"accessToken"` RefreshToken string `json:"refreshToken"` ExpiresIn int64 `json:"expiresIn"` }