| | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.dsh.communityWorldCup.entity.WorldCupPaymentParticipant; |
| | | import com.dsh.communityWorldCup.model.*; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | |
| | | import java.util.List; |
| | |
| | | * @param participantId |
| | | * @return |
| | | */ |
| | | WorldCupPaymentParticipant getWorldCupPaymentParticipant(Integer worldCupId, Integer participantType, Integer participantId); |
| | | WorldCupPaymentParticipant getWorldCupPaymentParticipant(Integer worldCupId, Integer participantType, Long participantId); |
| | | |
| | | |
| | | /** |
| | |
| | | * @param id |
| | | * @return |
| | | */ |
| | | MyWorldCupInfo getMyWorldCupInfo(String id, String lon, String lat); |
| | | MyWorldCupInfo getMyWorldCupInfo(Long id, String lon, String lat); |
| | | |
| | | |
| | | /** |
| | |
| | | * @return |
| | | */ |
| | | Map<String, Object> getRegisteredPersonnel(RegisteredPersonnel registeredPersonnel); |
| | | |
| | | |
| | | int getCount(Integer worldCupId, List<Long> worldCupPaymentId); |
| | | |
| | | |
| | | /** |
| | | * 获取用户列表 |
| | | * @param worldCupGameStatisticsInfoList |
| | | * @return |
| | | */ |
| | | Map<String, Object> getUserGameRecordList(WorldCupGameStatisticsInfoList worldCupGameStatisticsInfoList); |
| | | } |