1
zj
2025-10-11 2c7b7986f347961adec433e378a1f82434c7150e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.ruoyi.system.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.ruoyi.system.domain.IpBlacklist;
import com.ruoyi.system.domain.PaymentRecord;
import com.ruoyi.system.mapper.IpBlacklistMapper;
import com.ruoyi.system.mapper.PaymentRecordMapper;
import com.ruoyi.system.service.IpBlacklistService;
import com.ruoyi.system.service.PaymentRecordService;
import org.springframework.stereotype.Service;
 
@Service
public class PaymentRecordServiceImpl extends ServiceImpl<PaymentRecordMapper, PaymentRecord> implements PaymentRecordService {
}