|
@@ -9710,7 +9710,7 @@ public class GameDataServiceImpl implements IGameDataService {
|
|
|
$amount as today_total_amount,
|
|
|
player_os,
|
|
|
total_amount_count,
|
|
|
- ROW_NUMBER() over(order by today_total_amount desc, total_amount_count desc) as num
|
|
|
+ ROW_NUMBER() over(order by today_total_amount desc, total_amount_count desc, player_id desc) as num
|
|
|
FROM
|
|
|
game_ads.ads_player_recharge_ranking
|
|
|
WHERE player_id IN (@usersId)
|
|
@@ -9732,7 +9732,7 @@ public class GameDataServiceImpl implements IGameDataService {
|
|
|
$amount as today_total_amount,
|
|
|
player_os,
|
|
|
total_amount_count,
|
|
|
- ROW_NUMBER() over(order by today_total_amount desc, total_amount_count desc) as num
|
|
|
+ ROW_NUMBER() over(order by today_total_amount desc, total_amount_count desc, parent_player_id desc) as num
|
|
|
FROM
|
|
|
game_ads_parent.ads_player_recharge_ranking_parent
|
|
|
WHERE parent_player_id IN (@usersId)
|