From 808b5c18e6acbb75bad247f0a8edda60976abd06 Mon Sep 17 00:00:00 2001 From: jinpengyong <jpy123456> Date: Fri, 13 Oct 2023 15:14:50 +0800 Subject: [PATCH] chore:五分钟数据补0提交 --- screen-api/src/main/java/com/moral/api/service/ExcelService.java | 24 +++++++++++++++++++++--- 1 files changed, 21 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..a60eb28 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,31 @@ 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); + + //��������������� + public void rexcelImport(List<MultipartFile> files) throws IOException; + + + } -- Gitblit v1.8.0