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
ed9d006d
Commit
ed9d006d
authored
Sep 18, 2022
by
liming
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
预选赛查主页查询接口
parent
97942240
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
SeriesController.java
...rver/api/business/series/controller/SeriesController.java
+5
-5
No files found.
server-api/src/main/java/com/antai/sport/http/server/server/api/business/series/controller/SeriesController.java
View file @
ed9d006d
...
...
@@ -25,13 +25,13 @@ public class SeriesController {
private
SeriesService
seriesService
;
@GetMapping
(
"list"
)
@ApiOperation
(
value
=
"查询系列赛列表"
)
@ApiOperation
(
value
=
"
1.
查询系列赛列表"
)
public
ResponseEntity
<
Result
<
List
<
SeriesListVO
>>>
getSeriesList
()
{
return
success
(
seriesService
.
getSeriesList
());
}
@GetMapping
(
"{id}/{sportUserId}"
)
@ApiOperation
(
value
=
"查询系列赛详情"
)
@ApiOperation
(
value
=
"
2.
查询系列赛详情"
)
public
ResponseEntity
<
Result
<
SeriesDetailsVO
>>
getSeriesDetails
(
@PathVariable
(
"id"
)
Long
id
,
@PathVariable
(
"sportUserId"
)
Long
sportUserId
)
{
...
...
@@ -39,7 +39,7 @@ public class SeriesController {
}
@GetMapping
(
"apply/preload/{seriesId}/{sportUserId}"
)
@ApiOperation
(
value
=
"预加载报名信息方法"
)
@ApiOperation
(
value
=
"
3.
预加载报名信息方法"
)
public
ResponseEntity
<
Result
<
SeriesApplyPreLoadVO
>>
getSeresApplyPreLoadInfo
(
@PathVariable
(
"seriesId"
)
Long
seriesId
,
@PathVariable
(
"sportUserId"
)
Long
sportUserId
)
{
...
...
@@ -47,14 +47,14 @@ public class SeriesController {
}
@PostMapping
(
"apply"
)
@ApiOperation
(
value
=
"报名方法"
)
@ApiOperation
(
value
=
"
4.
报名方法"
)
public
ResponseEntity
<
Result
>
seriesApply
(
@RequestBody
SeriesApplyDTO
dto
)
{
seriesService
.
seriesApply
(
dto
);
return
success
();
}
@GetMapping
(
"qualifying/{roundId}/{areaId}/{sportUserId}"
)
@ApiOperation
(
value
=
"查询预选赛轮次主页数据"
)
@ApiOperation
(
value
=
"
5.
查询预选赛轮次主页数据"
)
public
ResponseEntity
<
Result
<
SeriesQualifyingMatchHomeVO
>>
getSeriesQualifyingMatchHomeData
(
@PathVariable
(
"roundId"
)
Long
roundId
,
@PathVariable
(
"areaId"
)
Long
areaId
,
...
...
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