Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
A
antai-sport-http-server
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
antai-sport
antai-sport-http-server
Commits
eec15345
Commit
eec15345
authored
Sep 29, 2022
by
liming
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
成就增加默认图标
parent
af6730d3
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
SeriesService.java
...management/api/business/series/service/SeriesService.java
+3
-1
SeriesBusinessMapper.xml
...src/main/resources/mapper/series/SeriesBusinessMapper.xml
+1
-1
No files found.
management-api/src/main/java/com/antai/sport/http/server/management/api/business/series/service/SeriesService.java
View file @
eec15345
...
...
@@ -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
());
...
...
management-api/src/main/resources/mapper/series/SeriesBusinessMapper.xml
View file @
eec15345
...
...
@@ -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"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment