李昊 4 years ago
parent
commit
4116844410

+ 0 - 3
gx_api/GxPress/Model/GxPress.Request/App/GroupUser/GroupUserInRequest.cs

@@ -1,7 +1,4 @@
-using System;
 using System.Collections.Generic;
-using System.Text;
-using GxPress.EnumConst;
 
 namespace GxPress.Request.App.GroupUser
 {

+ 16 - 0
gx_api/GxPress/Repository/GxPress.Repository.Implement/TopicRepository.cs

@@ -714,6 +714,14 @@ namespace GxPress.Repository.Implement
                                         TopicGroupId IN ({topicGroupId}))";
                 }
             }
+            if (request.TopicGroupIds.Count > 0)
+            {
+                //我的
+                if (request.TopicGroupIds.Contains(-1))
+                {
+                    sql += $" and a.UserId={request.UserId} ";
+                }
+            }
             if (!string.IsNullOrWhiteSpace(request.Keyword))
             {
                 sql += $@"  AND (b.Name LIKE '%{request.Keyword}%'
@@ -773,6 +781,14 @@ namespace GxPress.Repository.Implement
                                         TopicGroupId IN ({topicGroupId}))";
                 }
             }
+            if (request.TopicGroupIds.Count > 0)
+            {
+                //我的
+                if (request.TopicGroupIds.Contains(-1))
+                {
+                    sql += $" and a.UserId={request.UserId} ";
+                }
+            }
             if (!string.IsNullOrWhiteSpace(request.Keyword))
             {
                 sql += $@"  AND (b.Name LIKE '%{request.Keyword}%'