|
@@ -526,7 +526,8 @@ namespace Hotline.Application.Knowledge
|
|
.GroupBy(p => new { p.SourceOrganize.Name, p.LastModificationTime })
|
|
.GroupBy(p => new { p.SourceOrganize.Name, p.LastModificationTime })
|
|
.Select(p => new KnowedgeStatisticsDto
|
|
.Select(p => new KnowedgeStatisticsDto
|
|
{
|
|
{
|
|
- Index = SqlFunc.RowNumber($"{p.LastModificationTime} desc "),
|
|
|
|
|
|
+ // Index = SqlFunc.RowNumber($"{p.LastModificationTime} desc "),\
|
|
|
|
+ Index= SqlFunc.RowNumber($"{p.LastModificationTime} desc ", $"{p.SourceOrganize.Name}"),
|
|
LastModificationTime = p.LastModificationTime,
|
|
LastModificationTime = p.LastModificationTime,
|
|
OrgName = p.SourceOrganize.Name
|
|
OrgName = p.SourceOrganize.Name
|
|
})
|
|
})
|