lihao 4 år sedan
förälder
incheckning
4b9e01fa7b

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

@@ -255,7 +255,10 @@ namespace GxPress.Repository.Implement
             if (!string.IsNullOrEmpty(groupDetail.HistoryAvatarUrl))
                 groupDetail.HistoryAvatarUrl = StringUtils.AddDomain(groupDetail.HistoryAvatarUrl);
             var sql =
-                "SELECT a.*,b.Name,b.AvatarUrl,c.Name  FROM tede_group_user a inner join tede_user b on a.UserId=b.Id inner join tede_department c on b.DepartmentId=c.Id where a.GroupId=@groupId order by a.GroupUserRoleId";
+                $@"SELECT a.*,b.Name,b.AvatarUrl,c.Name  FROM tede_group_user a 
+                inner join tede_user b on a.UserId=b.Id 
+                inner join tede_department c on b.DepartmentId=c.Id 
+                where a.GroupId=@groupId order by a.GroupUserRoleId";
             var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
             var database = new Database(databaseType, _connectionString);
             var connection = database.GetConnection();

+ 10 - 4
gx_api/GxPress/Service/GxPress.Service.Implement/Group/GroupService.cs

@@ -21,7 +21,7 @@ using GxPress.Result.App.GroupUser;
 using GxPress.Service.Interface.AdminVerify;
 using GxPress.Service.Interface.Group;
 using GxPress.Service.Interface.Middle;
-
+using GxPress.Repository.Interface.Group;
 namespace GxPress.Service.Implement.Group
 {
     public partial class GroupService : IGroupService
@@ -35,10 +35,11 @@ namespace GxPress.Service.Implement.Group
         private readonly IMapper _mapper;
         private readonly IUserRepository _userRepository;
         private readonly IAdminVerifyRepository adminVerifyRepository;
+        private readonly IGroupCategoryRepository groupCategoryRepository;
         public GroupService(IGroupRepository groupRepository, IGroupUserRepository groupUserRepository,
             ITopicRepository topicRepository, IMiddleService middleService,
             IAdminVerifyInsertService adminVerifyService, IMiddleRepository middleRepository, IMapper mapper,
-            IUserRepository userRepository, IAdminVerifyRepository adminVerifyRepository)
+            IUserRepository userRepository, IAdminVerifyRepository adminVerifyRepository, IGroupCategoryRepository groupCategoryRepository)
         {
             _groupRepository = groupRepository;
             _groupUserRepository = groupUserRepository;
@@ -49,6 +50,7 @@ namespace GxPress.Service.Implement.Group
             _mapper = mapper;
             _userRepository = userRepository;
             this.adminVerifyRepository = adminVerifyRepository;
+            this.groupCategoryRepository = groupCategoryRepository;
         }
 
         /// <summary>
@@ -227,8 +229,6 @@ namespace GxPress.Service.Implement.Group
             return true;
         }
 
-
-
         /// <summary>
         /// 获取小组详情
         /// </summary>
@@ -243,6 +243,12 @@ namespace GxPress.Service.Implement.Group
                 var adminVerify = await adminVerifyRepository.GetAsync(Q.Where(nameof(Entity.AdminVerify.VerifyType), 3).Where(nameof(Entity.AdminVerify.SourceId), result.Id));
                 result.IsApply = adminVerify != null && adminVerify.DisposeType == 0;
             }
+            if (result.GroupCategroyId > 0)
+            {
+                var groupCategory = await groupCategoryRepository.GetAsync(result.GroupCategroyId);
+                if (groupCategory != null)
+                    result.CategroyName = groupCategory.PiazzaName;
+            }
             result.UserName = user.Name;
             result.GroupUserNumber = result.GroupUserListResult.Count();
             //获取小组话题数量