李昊 4 年之前
父節點
當前提交
0d7a71261f

+ 6 - 0
GxPress/Model/GxPress.Entity/ArticleGroup.cs

@@ -20,5 +20,11 @@ namespace GxPress.Entity
         /// </summary>
         [DataColumn] 
         public int Sort { get; set; }
+          /// <summary>
+        /// 系统默认
+        /// </summary>
+        /// <value></value>
+         [DataColumn] 
+        public bool IsSystemDefault { get; set; }
     }
 }

+ 1 - 1
GxPress/Repository/GxPress.Repository.Implement/ArticleGroupRepository.cs

@@ -55,7 +55,7 @@ namespace GxPress.Repository.Implement
         }
         public async Task<IEnumerable<ArticleGroup>> GetListAsync(int userId)
         {
-            string sql = $@"select * from ccpph.tede_article_group where Id not in(SELECT ArticleGroupId FROM ccpph.tede_article_group_user where UserId={userId})";
+            string sql = $@"select * from ccpph.tede_article_group where Id not in(SELECT ArticleGroupId FROM ccpph.tede_article_group_user where UserId={userId}) and IsSystemDefault=0";
             var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
             var database = new Database(databaseType, _connectionString);
             var connection = database.GetConnection();

+ 1 - 2
GxPress/Repository/GxPress.Repository.Implement/TopicRepository.cs

@@ -385,8 +385,7 @@ namespace GxPress.Repository.Implement
                                                                     FROM
                                                                         tede_middle
                                                                     WHERE
-                                                                        id = a.FolderId)
-                                                                    AND id = {request.UserId}))";
+                                                                        id = a.FolderId)))";
 
             if (request.TopicGroupIds.Count > 0)
             {