1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.smartearth.poiexcel.service;
|
| import com.smartearth.poiexcel.mapper.EntMapper;
| import org.springframework.stereotype.Service;
|
| import javax.annotation.Resource;
|
| /**
| * 企业服务类
| * @author WWW
| * @date 2023-10-05
| */
| @Service
| public class EntService implements EntMapper {
| @Resource
| EntMapper entMapper;
|
| //
| }
|
|