李昊 4 lat temu
rodzic
commit
d18077c18c

+ 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);
         }