mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-13 04:36:38 +08:00
17 lines
458 B
C#
17 lines
458 B
C#
|
|
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);
|
||
|
|
}
|