31 lines
753 B
Java
Raw Normal View History

2022-03-11 17:33:03 +08:00
package com.xkrs.service;
2022-03-10 19:24:42 +08:00
2022-03-17 11:54:36 +08:00
import com.xkrs.model.qo.ExportExcelQo;
2022-03-11 17:33:03 +08:00
import com.xkrs.model.qo.QcSourceQoDelete;
import com.xkrs.model.qo.QcSourceQoInsert;
2022-03-11 16:30:05 +08:00
import org.springframework.web.multipart.MultipartFile;
2022-03-10 19:33:25 +08:00
2022-03-10 19:24:42 +08:00
public interface QcSourceService {
2022-03-10 19:33:25 +08:00
2022-03-10 20:50:21 +08:00
/**
2022-03-11 15:37:06 +08:00
* 添加检验数据
2022-03-10 20:50:21 +08:00
*/
2022-03-11 16:30:05 +08:00
String insertQcSource(QcSourceQoInsert insertQo, MultipartFile picture);
2022-03-10 19:33:25 +08:00
2022-03-11 10:28:36 +08:00
/**
2022-03-11 15:37:06 +08:00
* 删除检验数据
*/
String deleteQcSource(QcSourceQoDelete deleteQo);
/**
* 查询检验数据
2022-03-11 10:28:36 +08:00
*/
2022-03-16 12:53:49 +08:00
String queryQcSource(String batchNo, String machineNo, String materialNo, String mouldNo, String varietyNo, String craftItemNo);
2022-03-11 10:28:36 +08:00
2022-03-17 11:02:42 +08:00
/**
* 导出Excel表格
*/
2022-03-17 11:54:36 +08:00
String exportExcel(ExportExcelQo exportExcelQo) throws Exception;
2022-03-17 11:02:42 +08:00
2022-03-10 19:24:42 +08:00
}