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