industrial_measurement/src/main/java/com/xkrs/service/QcInspectionFileService.java

31 lines
725 B
Java
Raw Normal View History

2022-02-12 08:48:57 +08:00
package com.xkrs.service;
2022-02-28 13:55:17 +08:00
import com.xkrs.model.qo.QcInspectionFileQo;
2022-02-12 08:48:57 +08:00
import org.apache.poi.openxml4j.exceptions.InvalidFormatException;
import org.springframework.web.multipart.MultipartFile;
import java.io.IOException;
/**
* @Author: XinYi Song
* @Date: 2022/1/20 15:24
*/
2022-02-28 15:44:43 +08:00
public interface QcInspectionFileService {
2022-02-12 08:48:57 +08:00
/**
* 添加模板信息
2022-02-28 13:55:17 +08:00
*
* @param inspectionFileQo
2022-02-12 08:48:57 +08:00
* @return
*/
2022-02-28 13:55:17 +08:00
String insertFileExcel(QcInspectionFileQo inspectionFileQo, MultipartFile fileExcel) throws IOException;
2022-02-12 08:48:57 +08:00
/**
* 导出excel
2022-02-28 13:55:17 +08:00
*
* @param inspectionFileQo
2022-02-12 08:48:57 +08:00
* @return
*/
2022-02-28 13:55:17 +08:00
String exportExcel(QcInspectionFileQo inspectionFileQo) throws IOException, InvalidFormatException;
2022-02-12 08:48:57 +08:00
}