李昊 4 years ago
parent
commit
ca2e09e1f1

+ 9 - 1
gx_api/GxPress/Repository/GxPress.Repository.Implement/GroupRepository.cs

@@ -114,7 +114,15 @@ namespace GxPress.Repository.Implement
                 group.IsWords = request.IsWords == 1;
             return await _repository.UpdateAsync(group);
         }
-
+        /// <summary>
+        /// 修改小组
+        /// </summary>
+        /// <param name="request"></param>
+        /// <returns></returns>
+        public async Task<bool> UpdateAsync(Entity.Group group)
+        {
+            return await _repository.UpdateAsync(group);
+        }
         /// <summary>
         /// 删除小组
         /// </summary>

+ 6 - 0
gx_api/GxPress/Repository/GxPress.Repository.Interface/IGroupRepository.cs

@@ -102,5 +102,11 @@ namespace GxPress.Repository.Interface
         /// <param name="userId"></param>
         /// <returns></returns>
         Task<IEnumerable<UserGroupResult>> GetUserGroupListAsync(int userId);
+        /// <summary>
+        /// 修改小组
+        /// </summary>
+        /// <param name="request"></param>
+        /// <returns></returns>
+        Task<bool> UpdateAsync(Entity.Group group);
     }
 }

+ 3 - 0
gx_api/GxPress/Service/GxPress.Service.Implement/Group/GroupService.cs

@@ -296,6 +296,9 @@ namespace GxPress.Service.Implement.Group
                         throw new BusinessException("转移人不是该小组成员");
                     groupUser.GroupUserRoleId = GroupUserRoleTyeConst.General;
                     await _groupUserRepository.UpdateAsync(groupUser);
+                    //
+                    group.UserId = request.TransferUserId;
+                    await _groupRepository.UpdateAsync(group);
                     transactionScope.Complete();
                     return true;
                 }