|
@@ -19,7 +19,6 @@ using Datory;
|
|
|
using GxPress.Common.Tools;
|
|
|
using GxPress.Result.App.User;
|
|
|
using GxPress.Repository.Interface.WorkFlow;
|
|
|
-using GxPress.EnumConst;
|
|
|
using GxPress.Request.App.Flow;
|
|
|
using GxPress.Repository.Interface.WaitHandle;
|
|
|
using GxPress.Request.AddressBookGroup;
|
|
@@ -400,15 +399,22 @@ namespace GxPress.Service.Implement
|
|
|
Items = userLinkModelAttributeResult
|
|
|
});
|
|
|
}
|
|
|
- //系统通讯录
|
|
|
+ //系统通讯录 查询我的小组和群聊
|
|
|
+ //var groupUserCount=await
|
|
|
userLinkResult.Add(
|
|
|
new UserLinkModelResult
|
|
|
{
|
|
|
TypeId = 2,
|
|
|
Name = "系统通讯录",
|
|
|
Items = new List<UserLinkModelAttributeResult>{
|
|
|
- new UserLinkModelAttributeResult{Id=0,Name="我的小组",TypeValue=1},
|
|
|
- new UserLinkModelAttributeResult{Id=0,Name="我的群聊",TypeValue=2},
|
|
|
+ new UserLinkModelAttributeResult{Id=0,Name="我的小组"
|
|
|
+ ,TypeValue=1
|
|
|
+ ,UserCount=await groupUserRepository.GetUserIntoGroupUserCountAsync(userId)
|
|
|
+ },
|
|
|
+ new UserLinkModelAttributeResult{Id=0
|
|
|
+ ,Name="我的群聊"
|
|
|
+ ,TypeValue=2
|
|
|
+ ,UserCount=await groupChatUserRepository.GetUserIntoGroupChatUserCountAsync(userId)},
|
|
|
//new UserLinkModelAttributeResult{Id=0,Name="我的课程",TypeValue=3}
|
|
|
}
|
|
|
}
|