李昊 преди 4 години
родител
ревизия
ae05dfba05

+ 2 - 0
gx_api/GxPress/Model/GxPress.EnumConst/AllTypeConst.cs

@@ -121,6 +121,8 @@ namespace GxPress.EnumConst
         MyGroup = 20,
         [Description("我的群聊")]
         MyGroupChat = 21,
+        [Description("我的小组文件夹")]
+        MyGroupFolder = 22,
         [Description("自建通讯录")]
         My = 3,
         [Description("其他")]

+ 2 - 0
gx_api/GxPress/Model/GxPress.Result/App/GroupUser/GroupUserFindResult.cs

@@ -45,5 +45,7 @@ namespace GxPress.Result.App.GroupUser
         /// </summary>
         /// <value></value>
         public int FileCount { get; set; }
+        public int TypeId { get; set; }
+        public int TypeValue { get; set; }
     }
 }

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

@@ -110,6 +110,11 @@ namespace GxPress.Service.Implement.Group
             var result = await _groupRepository.FindGroupByGroupFolderId(request);
             foreach (var item in result.Items)
             {
+                item.TypeId = UserlinkConst.System.GetHashCode();
+                if (item.AttributeValue == 2)
+                    item.TypeValue = UserlinkConst.MyGroupFolder.GetHashCode();
+                else
+                    item.TypeValue = UserlinkConst.MyGroup.GetHashCode();
                 // //共享数量
                 // item.TopicSharingCount = await _groupRepository.SharingCountAsync(item.GroupId);
                 // //总话题数量