|
@@ -80,7 +80,7 @@ namespace GxPress.Repository.Implement.Note
|
|
|
notePageListRequest.Content = note == null ? "" : note.Content;
|
|
|
notePageListRequest.MediaId = note == null ? 0 : note.MediaId;
|
|
|
notePageListRequest.CatalogId = note == null ? "" : note.CatalogId;
|
|
|
- notePageListRequest.ChapterId = note == null ? "" : note.ChapterId;
|
|
|
+ notePageListRequest.ChapterId = note == null ? "" : note.ChapterId;
|
|
|
notePageListRequest.Name = user == null ? "" : user.Name;
|
|
|
notePageListRequest.AvatarUrl = user == null ? "" : StringUtils.AddDomainMin(user.AvatarUrl);
|
|
|
notePageListRequest.DepartmentName = department == null ? "" : department.Name;
|
|
@@ -432,6 +432,7 @@ namespace GxPress.Repository.Implement.Note
|
|
|
a.Id,
|
|
|
a.Title,
|
|
|
a.Content,
|
|
|
+ a.HtmlContent,
|
|
|
a.CreatedDate,
|
|
|
b.Name,
|
|
|
b.AvatarUrl,
|
|
@@ -530,6 +531,7 @@ namespace GxPress.Repository.Implement.Note
|
|
|
noteTopicResult.UserName = user == null ? "" : user.Name;
|
|
|
noteTopicResult.AvatarUrl = user == null ? "" : StringUtils.AddDomainMin(user.AvatarUrl);
|
|
|
noteTopicResult.FolderId = middle == null ? 0 : middle.Id;
|
|
|
+ noteTopicResult.FolderName = middle == null ? "" : middle.FolderName;
|
|
|
return noteTopicResult;
|
|
|
}, splitOn: "Id,Name,Id");
|
|
|
sql = $@"SELECT
|