李昊 4 years ago
parent
commit
80161b17d7

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

@@ -68,7 +68,7 @@ namespace GxPress.Repository.Implement.Note
         public async Task<bool> SetIsTopAsync(int noteId)
         {
             var note = await _repository.GetAsync(noteId);
-            note.IsTopic = !note.IsTopic;
+            note.IsTop =!note.IsTop;
             return await _repository.UpdateAsync(note);
         }
         /// <summary>