李昊 4 years ago
parent
commit
cbeb66f25a

+ 1 - 1
gx_api/GxPress/Repository/GxPress.Repository.Implement/Note/NoteRepository.cs

@@ -725,7 +725,7 @@ namespace GxPress.Repository.Implement.Note
                                     INNER JOIN
                                 tede_user b ON a.UserId = b.Id inner join tede_middle c on c.MiddleId=a.Id
                             WHERE
-                                a.IsDelete = 0 AND a.UserId = {request.UserId}  and c.FolderType={noteConstValue} {sqlValue}";
+                                a.IsDelete = 0 and a.IsTopic=0  AND a.UserId = {request.UserId}  and c.FolderType={noteConstValue} {sqlValue}";
             result.Total = await connection.ExecuteScalarAsync<int>(sql);
             return result;
         }