puzhibing
2023-07-06 c0f6294b0be6789fddd652f89f820fcf6d5526cf
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 {
}