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; 
 | 
  
 | 
  
 | 
  
 | 
} 
 |