package com.gear.finance.service.impl; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.gear.finance.mapper.FinanceUserBankMapper; import com.gear.finance.domain.FinanceUserBank; import com.gear.finance.service.IFinanceUserBankService; /** * 用户银行卡Service业务层处理 * * @author czx * @date 2023-11-16 */ @Service public class FinanceUserBankServiceImpl extends ServiceImpl implements IFinanceUserBankService { @Autowired private FinanceUserBankMapper financeUserBankMapper; }