package com.dsh.competition.service.impl;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.dsh.competition.entity.Participant;
|
import com.dsh.competition.mapper.ParticipantMapper;
|
import com.dsh.competition.service.IParticipantService;
|
import org.springframework.stereotype.Service;
|
|
/**
|
* @author zhibing.pu
|
* @date 2023/7/6 16:51
|
*/
|
@Service
|
public class ParticipantServiceImpl extends ServiceImpl<ParticipantMapper, Participant> implements IParticipantService {
|
}
|