package com.dsh.communityWorldCup.service.impl;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.dsh.communityWorldCup.entity.WorldCupPaymentParticipant;
|
import com.dsh.communityWorldCup.mapper.WorldCupPaymentParticipantMapper;
|
import com.dsh.communityWorldCup.service.IWorldCupPaymentParticipantService;
|
import org.springframework.stereotype.Service;
|
|
/**
|
* @author zhibing.pu
|
* @Date 2024/2/19 11:07
|
*/
|
@Service
|
public class WorldCupPaymentParticipantServiceImpl extends ServiceImpl<WorldCupPaymentParticipantMapper, WorldCupPaymentParticipant> implements IWorldCupPaymentParticipantService {
|
|
|
/**
|
* 获取报名数据
|
* @param worldCupId
|
* @param participantType
|
* @param participantId
|
* @return
|
*/
|
@Override
|
public WorldCupPaymentParticipant getWorldCupPaymentParticipant(Integer worldCupId, Integer participantType, Integer participantId) {
|
return this.baseMapper.getWorldCupPaymentParticipant(worldCupId, participantType, participantId);
|
}
|
}
|