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.FinanceIdentificationRecordMapper;
|
import com.gear.finance.domain.FinanceIdentificationRecord;
|
import com.gear.finance.service.IFinanceIdentificationRecordService;
|
|
/**
|
* 实名认证记录Service业务层处理
|
*
|
* @author czx
|
* @date 2023-11-16
|
*/
|
@Service
|
public class FinanceIdentificationRecordServiceImpl extends ServiceImpl<FinanceIdentificationRecordMapper, FinanceIdentificationRecord> implements IFinanceIdentificationRecordService {
|
@Autowired
|
private FinanceIdentificationRecordMapper financeIdentificationRecordMapper;
|
}
|