Board-Game-Bot / backend-nest

这是为 Board Game Bot App 提供的后端平台,旨在提供主要的C端业务后端服务。
0 stars 0 forks source link

后端需求:获取游戏排名 #57

Closed SokuRitszZ closed 9 months ago

SokuRitszZ commented 10 months ago

获取游戏排名

用户故事

我希望游戏对抗可以增减用户的天梯分数,并且排名依据就是用户代码游戏

接口 + 参数

interface Dto {
  gameId: string;
  pageIndex: string;
  pageSize: string;
}

interface Vo {
  rates: Rate[];
}