zyy
2025-07-18 96e443a77b1d425d3e536c288fc271fe182f1496
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.nq.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.nq.dao.PaymentRechargeMapper;
import com.nq.dao.TransferResponseMapper;
import com.nq.pojo.PaymentRecharge;
import com.nq.pojo.TransferResponse;
import com.nq.service.TransferResponseService;
import org.springframework.stereotype.Service;
 
/**
 * @program: dabaogp
 * @description:
 * @create: 2025-03-12 18:30
 **/
@Service
public class TransferResponseServiceImpl  extends ServiceImpl<TransferResponseMapper, TransferResponse> implements TransferResponseService {
}