From 76cee9b52e3811dca3f4481610bd0835cbd45c6f Mon Sep 17 00:00:00 2001
From: chenxi <276999030@qq.com>
Date: Sat, 27 May 2023 15:13:49 +0800
Subject: [PATCH] Merge branch 'dev' of http://blit.7drlb.com:8888/r/moral into dev
---
screen-api/src/main/java/com/moral/api/service/ExcelService.java | 21 ++++++++++++++++++---
1 files changed, 18 insertions(+), 3 deletions(-)
diff --git a/screen-api/src/main/java/com/moral/api/service/ExcelService.java b/screen-api/src/main/java/com/moral/api/service/ExcelService.java
index 0b1e330..5cbdc40 100644
--- a/screen-api/src/main/java/com/moral/api/service/ExcelService.java
+++ b/screen-api/src/main/java/com/moral/api/service/ExcelService.java
@@ -4,6 +4,7 @@
import org.springframework.web.multipart.MultipartFile;
import java.io.IOException;
+import java.text.ParseException;
import java.util.List;
import java.util.Map;
@@ -12,14 +13,28 @@
import com.moral.api.pojo.vo.excel.ExcelVo;
-public interface ExcelService {
+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);
+
+
+
}
--
Gitblit v1.8.0