package com.qianwen.core.mp.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import java.util.List; /* loaded from: blade-starter-mybatis-9.3.0.0-SNAPSHOT.jar:org/springblade/core/mp/mapper/BladeMapper.class */ public interface BladeMapper extends BaseMapper { int insertIgnore(T entity); int replace(T entity); int insertBatchSomeColumn(List entityList); }