From b23b243473fc9ab20ca62eebf3668c143e2e7d23 Mon Sep 17 00:00:00 2001 From: 无关风月 <443237572@qq.com> Date: 星期三, 24 七月 2024 15:30:53 +0800 Subject: [PATCH] Merge branch '2.0' of http://120.76.84.145:10101/gitblit/r/java/PlayPai into 2.0 --- cloud-server-competition/src/main/java/com/dsh/competition/service/IParticipantService.java | 10 +++++++++- 1 files changed, 9 insertions(+), 1 deletions(-) diff --git a/cloud-server-competition/src/main/java/com/dsh/competition/service/IParticipantService.java b/cloud-server-competition/src/main/java/com/dsh/competition/service/IParticipantService.java index 4d48a26..2594c9b 100644 --- a/cloud-server-competition/src/main/java/com/dsh/competition/service/IParticipantService.java +++ b/cloud-server-competition/src/main/java/com/dsh/competition/service/IParticipantService.java @@ -22,6 +22,7 @@ /** * 添加参赛人员信息 + * * @param uid * @param addParticipant * @return @@ -31,6 +32,7 @@ /** * 获取参赛人员列表 + * * @param uid * @return * @throws Exception @@ -40,6 +42,7 @@ /** * 修改参赛人员信息 + * * @param editParticipant * @return * @throws Exception @@ -49,19 +52,24 @@ /** * 删除参赛人员信息 + * * @param id * @return * @throws Exception */ - ResultUtil delParticipant(Integer id) throws Exception; + ResultUtil delParticipant(Integer id, Integer isStudent) throws Exception; /** * 保存学员后同步参赛人员信息 + * * @param saveParticipant * @throws Exception */ void saveParticipant(SaveParticipant saveParticipant) throws Exception; Page<CompetitionUser> getPeopleFromId(Page<UserCompetition> participantPage, Integer id, Integer state); + Page<CompetitionUser> getPeopleFromId1(long offset, long limit, Integer id, Integer state); + + List<CompetitionUser> getPeoples(Integer id, Integer state); } -- Gitblit v1.7.1