协议增加:请求排行榜数据

This commit is contained in:
chen wei bo
2025-10-08 15:48:22 +08:00
parent 8b4f2d7262
commit 558b9ca240
9 changed files with 182 additions and 9 deletions
@@ -312,4 +312,15 @@ export class MockGirlService implements IGirlService {
};
return this.ok(res);
}
// 获取排行榜列表
async reqGirlRankData(req: proto.cs.ICSGetRankReq): Promise<ApiResponse<proto.cs.ICSGetRankRes>> {
// TODO
// 返回数据
const res: proto.cs.ICSGetRankRes = {
girls: [],
};
return this.ok(res);
}
}