1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.smartearth.poiexcel.mapper;
|
| import org.apache.ibatis.annotations.Mapper;
| import org.springframework.stereotype.Repository;
|
| /**
| * 企业接口映射类
| * @author WWW
| * @date 2023-10-05
| */
| @Mapper
| @Repository
| public interface EntMapper {
|
| }
|
|