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 {
|
}
|