You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
992 B
Java
51 lines
992 B
Java
package com.engine.organization.service;
|
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
import java.util.Map;
|
|
|
|
/**
|
|
* @author:dxfeng
|
|
* @createTime: 2022/06/29
|
|
* @version: 1.0
|
|
*/
|
|
public interface ImportCommonService {
|
|
|
|
/**
|
|
* 获取导入字段
|
|
*
|
|
* @return
|
|
*/
|
|
Map<String, Object> getImportFields(String importType);
|
|
|
|
/**
|
|
* 获取导入表单
|
|
*
|
|
* @return
|
|
*/
|
|
Map<String, Object> getImportForm(String importType, String columns);
|
|
|
|
|
|
/**
|
|
* 导入数据
|
|
*
|
|
* @param params
|
|
* @return
|
|
*/
|
|
Map<String, Object> saveImport(Map<String, Object> params,HttpServletRequest request);
|
|
|
|
/**
|
|
* 导入日志详情列表
|
|
*
|
|
* @param params
|
|
* @return
|
|
*/
|
|
Map<String, Object> getImportResult(Map<String, Object> params);
|
|
|
|
Map<String, Object> getHasRight();
|
|
|
|
Map<String,Object> saveCommonImport(Map<String, Object> params);
|
|
|
|
Map<String, Object> getCommonForm(String importModule);
|
|
|
|
}
|