package com.glxp.api.service; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.glxp.api.dao.BaseMapperPlus; import java.util.List; public class CustomServiceImpl, T> extends ServiceImpl, T> implements CustomService{ @Override public int insertIgnore(T entity) { return baseMapper.insertIgnore(entity); } @Override public int insertIgnoreBatch(List entityList) { return baseMapper.insertIgnoreBatch(entityList); } @Override public int replace(T entity) { return baseMapper.replace(entity); } @Override public int replaceBatch(List entityList) { return baseMapper.replaceBatch(entityList); } }