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