zhibing.pu
2024-07-24 47e23cf659d4cc58bc93b44b16e64e82efcfb08d
cloud-server-communityWorldCup/src/main/java/com/dsh/communityWorldCup/service/IWorldCupPaymentParticipantService.java
@@ -3,6 +3,7 @@
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;
@@ -22,7 +23,7 @@
     * @param participantId
     * @return
     */
    WorldCupPaymentParticipant getWorldCupPaymentParticipant(Integer worldCupId, Integer participantType, Integer participantId);
    WorldCupPaymentParticipant getWorldCupPaymentParticipant(Integer worldCupId, Integer participantType, Long participantId);
    /**
@@ -38,7 +39,7 @@
     * @param id
     * @return
     */
    MyWorldCupInfo getMyWorldCupInfo(String id, String lon, String lat);
    MyWorldCupInfo getMyWorldCupInfo(Long id, String lon, String lat);
    /**
@@ -55,4 +56,15 @@
     * @return
     */
    Map<String, Object> getRegisteredPersonnel(RegisteredPersonnel registeredPersonnel);
    int getCount(Integer worldCupId, List<Long> worldCupPaymentId);
    /**
     * 获取用户列表
     * @param worldCupGameStatisticsInfoList
     * @return
     */
    Map<String, Object> getUserGameRecordList(WorldCupGameStatisticsInfoList worldCupGameStatisticsInfoList);
}