puzhibing
2024-03-06 f6d50410b2674c2564be93b3887fff60e5769bd1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.dsh.communityWorldCup.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.dsh.communityWorldCup.entity.WorldCupPayment;
import com.dsh.communityWorldCup.mapper.WorldCupPaymentMapper;
import com.dsh.communityWorldCup.service.IWorldCupPaymentService;
import org.springframework.stereotype.Service;
 
/**
 * @author zhibing.pu
 * @Date 2024/2/22 14:23
 */
@Service
public class WorldCupPaymentServiceImpl extends ServiceImpl<WorldCupPaymentMapper, WorldCupPayment> implements IWorldCupPaymentService {
}