@Mapper public interface TabMapper {
Tab getById(Integer id);
List<Tab> getByIds(@Param("ids")List<Integer> ids);
int update(Tab record);
int updateSelective(Tab record);
int softDeleteById(Integer id);
int softDeleteByIds(@Param("ids")List<Integer> ids);
int insert(Tab record);
int batchInsert(@Param("items") List<Tab> items);
}