puzhibing
2024-02-22 cbca62b053eb3dc3cc7754aa0062aaf1e04e2cb4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.dsh.communityWorldCup.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.dsh.communityWorldCup.entity.WorldCupPaymentParticipant;
import org.apache.ibatis.annotations.Param;
 
/**
 * @author zhibing.pu
 * @Date 2024/2/19 11:06
 */
public interface WorldCupPaymentParticipantMapper extends BaseMapper<WorldCupPaymentParticipant> {
 
 
    /**
     * 获取报名数据
     * @param worldCupId
     * @param participantType
     * @param participantId
     * @return
     */
    WorldCupPaymentParticipant getWorldCupPaymentParticipant(@Param("worldCupId") Integer worldCupId, @Param("participantType") Integer participantType,
                                                             @Param("participantId") Integer participantId);
}