This commit is contained in:
jianzhichu
2025-12-20 12:19:49 +08:00
parent 0549688e6f
commit 7666ab109d
13 changed files with 462 additions and 203 deletions
+2 -2
View File
@@ -313,9 +313,9 @@ namespace dy.net.service
public async Task<List<DouyinVideoTopDto>> GetLastTop(int top=5)
public async Task<List<DouyinVideoTopDto>> GetLastSyncTop(int top=5)
{
return await _dyCollectVideoRepository.GetTopsOrderByCreateTime(top);
return await _dyCollectVideoRepository.GetTopsOrderBySyncTime(top);
}
}