Commit eec15345 authored by liming's avatar liming

成就增加默认图标

parent af6730d3
......@@ -343,8 +343,10 @@ public class SeriesService {
SeriesQualifyingMatchRankPageVO result = new SeriesQualifyingMatchRankPageVO();
result.setPageNo(dto.getPageNo());
Page<SeriesQualifyingMatchRankVO> pageParam = new Page<>(dto.getPageNo(), dto.getPageSize());
pageParam.addOrder(new OrderItem("t2.status", false));
pageParam.addOrder(new OrderItem("t2.match_rank", true));
pageParam.addOrder(new OrderItem("t2.create_time", true));
pageParam.addOrder(new OrderItem("t2.distance", false));
pageParam.addOrder(new OrderItem("t2.duration", true));
pageParam.addOrder(new OrderItem("t2.id", true));
IPage<SeriesQualifyingMatchRankVO> rankPage = seriesBusinessMapper
.getKnockoutMatchRecord(pageParam, dto.getMatchId());
......
......@@ -64,7 +64,7 @@
left join sport_user t3 on t2.player_id = t3.id
left join sport_user_training_log t4 on t4.game_mode = 30 and t2.id = t4.record_id
left join series_apply t5 on t2.series_id = t5.series_id and t2.player_id = t5.sport_user_id
where t2.match_id = #{matchId}
where t2.match_id = #{matchId} and t2.finished = 1
</select>
<select id="getSeriesMatchFinalists"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment