jinpengyong
2024-06-19 32cc13189371ee1e367897a64fbc22f90b53add8
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.HnExcelVo;
import com.moral.api.pojo.vo.excel.SyExcelVo;
 
public interface HnExcelService {
 
 
    /**
     * 浑南区导入
     * @param files
     * @param params
     * @return
     * @throws IOException
     * @throws ParseException
     */
    ExcelBO getExcelImport(List<MultipartFile> files, Map<String, Object> params) throws IOException, ParseException;
 
 
    /**
     * 浑南区下载
     * @param id
     * @return
     */
    SyExcelVo SyExport(Integer id);
 
 
    /**
     * 浑南区质量报告导出
     * @param id
     * @return
     */
    HnExcelVo hnExport(Integer id) throws ParseException;
 
}