feat: 完成排行榜功能
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
using Yi.Framework.AiHub.Application.Contracts.Dtos;
|
||||
|
||||
namespace Yi.Framework.AiHub.Application.Contracts.IServices;
|
||||
|
||||
/// <summary>
|
||||
/// 排行榜服务接口
|
||||
/// </summary>
|
||||
public interface IRankingService
|
||||
{
|
||||
/// <summary>
|
||||
/// 获取排行榜列表(全量返回)
|
||||
/// </summary>
|
||||
/// <param name="input">查询条件</param>
|
||||
/// <returns>排行榜列表</returns>
|
||||
Task<List<RankingItemDto>> GetListAsync(RankingGetListInput input);
|
||||
}
|
||||
Reference in New Issue
Block a user