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);
|
}
|