|
@@ -78,6 +78,9 @@ namespace GxPress.Repository.Implement.Note
|
|
|
{
|
|
|
notePageListRequest.Title = note == null ? "" : note.Title;
|
|
|
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.Name = user == null ? "" : user.Name;
|
|
|
notePageListRequest.AvatarUrl = user == null ? "" : StringUtils.AddDomainMin(user.AvatarUrl);
|
|
|
notePageListRequest.DepartmentName = department == null ? "" : department.Name;
|
|
@@ -253,7 +256,8 @@ namespace GxPress.Repository.Implement.Note
|
|
|
FROM
|
|
|
tede_middle
|
|
|
WHERE
|
|
|
- ParentId = a.Id and IsDelete=0) FileCount, b.Title, b.Content,b.ReadCount,c.Name,c.AvatarUrl,d.Name FROM tede_middle a LEFT JOIN tede_note b ON a.MiddleId = b.Id left join tede_user c on c.Id=b.UserId left join tede_department d on d.Id=c.DepartmentId WHERE a.UserId = {request.UserId} AND a.FolderType = 4 AND a.IsDelete = 0";
|
|
|
+ ParentId = a.Id and IsDelete=0) FileCount, b.Title, b.Content,b.ReadCount,b.MediaId,b.CatalogId,
|
|
|
+ b.ChapterId,c.Name,c.AvatarUrl,d.Name FROM tede_middle a LEFT JOIN tede_note b ON a.MiddleId = b.Id left join tede_user c on c.Id=b.UserId left join tede_department d on d.Id=c.DepartmentId WHERE a.UserId = {request.UserId} AND a.FolderType = 4 AND a.IsDelete = 0";
|
|
|
if (request.FolderId == 0 && !string.IsNullOrEmpty(request.SearchKey))
|
|
|
sql += $@" AND(b.Title LIKE '%{request.SearchKey}%' OR a.FolderName LIKE '%{request.SearchKey}%' or b.Content LIKE '%{request.SearchKey}%' or b.UserId in (select Id from tede_user where name like '%{request.SearchKey}%'))";
|
|
|
else if (!string.IsNullOrEmpty(request.SearchKey))
|
|
@@ -520,7 +524,7 @@ namespace GxPress.Repository.Implement.Note
|
|
|
var result = new PagedList<NoteTopicResult>();
|
|
|
result.Items =
|
|
|
await connection
|
|
|
- .QueryAsync<NoteTopicResult, User, Entity.Middle.Middle, NoteTopicResult>(sql,
|
|
|
+ .QueryAsync<NoteTopicResult, User, Entity.Middle.Middle, NoteTopicResult>(sql,
|
|
|
(noteTopicResult, user, middle) =>
|
|
|
{
|
|
|
noteTopicResult.UserName = user == null ? "" : user.Name;
|