测试登录成功
This commit is contained in:
parent
53175d539c
commit
8f95be2ba5
|
@ -23,7 +23,7 @@ type UserBasicInfoForSave struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (u *FsUserModel) FindUserByEmail(ctx context.Context, emailname string) (resp FsUser, err error) {
|
func (u *FsUserModel) FindUserByEmail(ctx context.Context, emailname string) (resp FsUser, err error) {
|
||||||
err = u.db.WithContext(ctx).Model(&FsUser{}).Where("`email` = ?", emailname).First(&resp).Error
|
err = u.db.WithContext(ctx).Model(&FsUser{}).Where("`email` = ?", emailname).Take(&resp).Error
|
||||||
return resp, err
|
return resp, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -32,7 +32,7 @@ type RequestBasicInfoForm struct {
|
||||||
|
|
||||||
type RequestUserLogin struct {
|
type RequestUserLogin struct {
|
||||||
Email string `json:"email"`
|
Email string `json:"email"`
|
||||||
Password string `json:"pwd"`
|
Password string `json:"password"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type RequestAddAddress struct {
|
type RequestAddAddress struct {
|
||||||
|
|
|
@ -77,7 +77,7 @@ type RequestBasicInfoForm {
|
||||||
// UserAddAddressHandler 用户登录请求结构
|
// UserAddAddressHandler 用户登录请求结构
|
||||||
type RequestUserLogin {
|
type RequestUserLogin {
|
||||||
Email string `json:"email"`
|
Email string `json:"email"`
|
||||||
Password string `json:"pwd"`
|
Password string `json:"password"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// RequestAddAddress 增加地址结构
|
// RequestAddAddress 增加地址结构
|
||||||
|
|
Loading…
Reference in New Issue
Block a user