1
dd
2025-10-21 8dcc757d17dd3bed804167a0aa640a978f10022c
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 {
}