1
zj
2026-01-13 6edf5438c56814b26bf4308286ebe26ac93ccb5c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.nq.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.nq.dao.TransferResponseMapper;
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 {
}