From 5a107c0386a1edb756f33e573133f01d29e4dbcd Mon Sep 17 00:00:00 2001 From: nickchange <126672920+nickchange@users.noreply.github.com> Date: 星期四, 14 十二月 2023 09:23:39 +0800 Subject: [PATCH] 门店距离排序bug --- cloud-server-competition/src/main/java/com/dsh/competition/service/IParticipantService.java | 6 ++++++ 1 files changed, 6 insertions(+), 0 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 9534d1a..287ed69 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,6 +52,7 @@ /** * 删除参赛人员信息 + * * @param id * @return * @throws Exception @@ -58,12 +62,14 @@ /** * 保存学员后同步参赛人员信息 + * * @param saveParticipant * @throws Exception */ void saveParticipant(SaveParticipant saveParticipant) throws Exception; Page<CompetitionUser> getPeopleFromId(Page<UserCompetition> participantPage, Integer id, Integer state); + List<CompetitionUser> getPeopleFromId1(Page<UserCompetition> participantPage, Integer id, Integer state); List<CompetitionUser> getPeoples(Integer id, Integer state); } -- Gitblit v1.7.1