From da30aeabac71e08d866d504b908a032763794e3e Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期四, 05 十月 2023 13:06:41 +0800 Subject: [PATCH] 添加批量操作接口 --- src/main/java/com/smartearth/poiexcel/mapper/EntMapper.java | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/smartearth/poiexcel/mapper/EntMapper.java b/src/main/java/com/smartearth/poiexcel/mapper/EntMapper.java index 98920ca..1c162ef 100644 --- a/src/main/java/com/smartearth/poiexcel/mapper/EntMapper.java +++ b/src/main/java/com/smartearth/poiexcel/mapper/EntMapper.java @@ -1,5 +1,6 @@ package com.smartearth.poiexcel.mapper; +import com.smartearth.poiexcel.entity.EntEntity; import org.apache.ibatis.annotations.Mapper; import org.springframework.stereotype.Repository; @@ -10,6 +11,5 @@ */ @Mapper @Repository -public interface EntMapper { - +public interface EntMapper extends BasicMapper<EntEntity> { } -- Gitblit v1.9.3