test #6

Closed
chenhao wants to merge 3 commits from test into main
1 changed files with 2 additions and 0 deletions
Showing only changes of commit 837f12c614 - Show all commits

View File

@ -746,12 +746,14 @@ func (m *Mongo) DeleteLogin(ctx *gin.Context, id int64) error {
func (m *Mongo) GetLoginListByPhoneHash(ctx *gin.Context, req *loginproto.OpListByPhoneHashReq) (*dbstruct.Login, error) {
login := &dbstruct.Login{}
col := m.getColLogin()
logger.Info("phone_hash:%v region_code:%v", req.PhoneHash, req.RegionCode)
query := qmgo.M{
"phone_hash": req.PhoneHash,
"region_code": req.RegionCode,
"del_flag": 0,
}
err := col.Find(ctx, query).One(login)
logger.Info("login:%v", login)
if err == qmgo.ErrNoSuchDocuments {
err = nil
return nil, err