cjl
2023-10-07 8b5439ba2748f91720975f73e7479a751d6a452b
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
32
33
34
35
36
37
38
39
40
41
42
43
package com.moral.api.service;
 
 
import org.springframework.web.multipart.MultipartFile;
 
import java.io.IOException;
import java.text.ParseException;
import java.util.List;
import java.util.Map;
 
import com.moral.api.pojo.bo.ExcelBO;
 
import com.moral.api.pojo.vo.excel.ExcelVo;
 
 
 
public interface ExcelService {
    /**
     * 高新区导入
     * @param files
     * @param params
     * @return
     * @throws IOException
     */
    public ExcelBO importTemplate(List<MultipartFile> files, Map<String, Object> params) throws IOException;
 
    /**
     * 高新区下载
     * @param id
     * @return
     */
    public ExcelVo export(Integer id);
 
    //查询
    public  List<ExcelBO> excelSelect(String startTime,String code,String endTime);
 
 
    //天数据补充
    public  void rexcelImport(List<MultipartFile> files) throws IOException;
 
 
 
}