puzhibing
2023-07-06 2b4511ca363e74343e1cb678c23a9e7638800a3f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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 {
}