|
@@ -7,6 +7,7 @@ using GxPress.Common.AppOptions;
|
|
|
using GxPress.Common.Page;
|
|
|
using GxPress.Common.Tools;
|
|
|
using GxPress.Entity;
|
|
|
+using GxPress.EnumConst;
|
|
|
using GxPress.Repository.Interface.Note;
|
|
|
using GxPress.Request.App.Note;
|
|
|
using GxPress.Request.Web;
|
|
@@ -113,7 +114,7 @@ namespace GxPress.Repository.Implement.Note
|
|
|
public string GetCollectionSql(NoteSearchPageListRequest request)
|
|
|
{
|
|
|
string sql = "";
|
|
|
- var noteTypeId = GxPress.EnumConst.AllTypeConst.Note.GetHashCode();
|
|
|
+ var noteTypeId = request.TypeValue == 0 ? AllTypeConst.Note.GetHashCode() : AllTypeConst.TopicNote.GetHashCode();
|
|
|
if (request.VisitUserId > 0)
|
|
|
{
|
|
|
sql =
|
|
@@ -734,7 +735,7 @@ namespace GxPress.Repository.Implement.Note
|
|
|
/// </summary>
|
|
|
/// <param name="userId"></param>
|
|
|
/// <returns></returns>
|
|
|
- public async Task<IEnumerable<int>> GetLatelyFolderIdAsync(int userId,bool isTopic)
|
|
|
+ public async Task<IEnumerable<int>> GetLatelyFolderIdAsync(int userId, bool isTopic)
|
|
|
{
|
|
|
var query = Q.NewQuery();
|
|
|
query.Select(nameof(Entity.Note.Note.FolderId));
|