package com.glxp.api.service; import com.baomidou.mybatisplus.extension.service.IService; import java.util.List; public interface CustomService extends IService { int insertIgnore(T entity); boolean insertIgnoreBatch(List entityList); int replace(T entity); boolean replaceBatch(List entityList); }