1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
| package com.product.org.admin.service.idel;
|
| import java.util.List;
| import java.util.Map;
|
| import com.product.core.entity.DataTableEntity;
| import com.product.core.exception.BaseException;
|
| /**
| * 数据导入
| * Copyright LX-BASE
| * @Title: LX-BASE-
| * @Project: IImportDataService
| * @Date: 2020-09-25 13:48
| * @Author: 杜洪波
| * @Description:
| */
| public interface IImportDataService {
| /**
| * 数据导入
| * @param mapData
| * @return
| * @throws BaseException
| */
| public void dataTranslate(Map<String, DataTableEntity>mapData,String login_url) throws BaseException;
| /**
| * 员工 用户导入保存,事务处理
| * @param tables 所有数据
| */
| public void importStaffSave(List<String> retableNames,Map <String,DataTableEntity> tables);
| }
|
|