李昊 4 년 전
부모
커밋
d18077c18c
2개의 변경된 파일5개의 추가작업 그리고 4개의 파일을 삭제
  1. 5 0
      GxPress/Model/GxPress.Result/User/UserResult.cs
  2. 0 4
      GxPress/Repository/GxPress.Repository.Implement/UserRepository.cs

+ 5 - 0
GxPress/Model/GxPress.Result/User/UserResult.cs

@@ -50,5 +50,10 @@ namespace GxPress.Result.User
         /// 角色ID
         /// </summary>
         public int RoleId { get; set; }
+        /// <summary>
+        /// 环信ID
+        /// </summary>
+        /// <value></value>
+        public string ImId { get; set; }
     }
 }

+ 0 - 4
GxPress/Repository/GxPress.Repository.Implement/UserRepository.cs

@@ -579,17 +579,13 @@ namespace GxPress.Repository.Implement
             var code = _cache.GetString(key).Replace("\"", "");
             if (string.IsNullOrEmpty(code)) throw new BusinessException("验证码已过期");
             if (!request.Code.Equals(code, StringComparison.OrdinalIgnoreCase)) throw new BusinessException("验证码错误");
-
             var user = await GetAsync(request.UserId);
-
             //用户不存在,自动注册
             if (user == null)
             {
                 throw new BusinessException("该用户不存在");
             }
-
             user.Phone = request.Phone;
-
             return await _repository.UpdateAsync(user);
         }