| | |
| | | import com.rongyichuang.player.dto.response.PlayerRegistrationResponse; |
| | | import com.rongyichuang.player.dto.response.StageJudgeRatingDetailResponse; |
| | | import com.rongyichuang.player.dto.PromotionCompetitionResponse; |
| | | import com.rongyichuang.player.dto.response.PromotionCompetitionPageResponse; |
| | | import com.rongyichuang.player.dto.CompetitionParticipantResponse; |
| | | import com.rongyichuang.player.dto.PromotionInput; |
| | | import com.rongyichuang.player.dto.PromotionResult; |
| | |
| | | public ProjectReviewApplicationPageResponse projectReviewApplications( |
| | | @Argument String name, |
| | | @Argument Long activityId, |
| | | @Argument Long regionId, |
| | | @Argument Integer state, |
| | | @Argument Integer page, |
| | | @Argument Integer size |
| | | ) { |
| | | PageResponse<ActivityPlayerApplicationResponse> pageResponse = |
| | | service.listProjectReviewApplications(name, activityId, state, page, size); |
| | | service.listProjectReviewApplications(name, activityId, regionId, state, page, size); |
| | | return ProjectReviewApplicationPageResponse.from(pageResponse); |
| | | } |
| | | |
| | |
| | | * 获取比赛晋级列表 |
| | | */ |
| | | @QueryMapping |
| | | public List<PromotionCompetitionResponse> promotionCompetitions( |
| | | public PromotionCompetitionPageResponse promotionCompetitions( |
| | | @Argument String name, |
| | | @Argument Integer page, |
| | | @Argument Integer size) { |